Lab Task Time Table
Lab Task Time Table
h>
int main() {
int dept;
printf("Enter your Department\nFor Engg. Disciplines Enter: 1\nFor Physics and Medical Physics Enter:
2\nFor Chemistry Enter:\t\t\t\t\t 3\nFor Computer Science Enter: \t\t\t 4\n");
scanf("%d", &dept);
switch(dept)
case 1:
break;
case 2:
break;
case 3:
break;
case 4:
break;
default:
return 0;