Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
13 views2 pages

Lab Task Time Table

Uploaded by

Haris Khan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views2 pages

Lab Task Time Table

Uploaded by

Haris Khan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

#include <stdio.

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:

printf("Monday:\n8:25-9:20: INST\n9:30-10:25: MM\n10:35-11:30: EM\n11:40-12:35: CF-I\n1:30-3:25:


Tutorial(INST)\n");

printf("Tuesday:\n8:25-9:20: MM\n9:30-10:25: -\n10:35-11:30: EM\n11:40-12:35: Dept Course\n1:30-3:25:


-\n");

printf("Wednesday:\n8:25-9:20: -\n9:30-10:25: MM\n10:35-11:30: EM\n11:40-12:35: Dept Course\n1:30-


3:25: -\n");

printf("Thursday:\n8:25-9:20: INST\n9:30-10:25: CF-I\n10:35-11:30: AM\n11:40-12:35: Dept Course\n1:30-


3:25: Tutorial(CF-1)\n");

printf("Friday:\n8:25-9:20: INST\n9:30-10:25: CF-1\n10:35-11:30: AM\n11:40-12:35: -\n1:30-3:25: CF-


1(Lab)\n");

break;

case 2:

printf("Monday:\n8:25-9:20: INST\n9:30-10:25: MM\n10:35-11:30: EM\n11:40-12:35: CF-2\n1:30-3:25:


Tutorial(INST)\n");

printf("Tuesday:\n8:25-9:20: MM\n9:30-10:25: -\n10:35-11:30: EM\n11:40-12:35: Dept Course\n1:30-3:25:


-\n");

printf("Wednesday:\n8:25-9:20: -\n9:30-10:25: MM\n10:35-11:30: EM\n11:40-12:35: Dept Course\n1:30-


3:25: -\n");

printf("Thursday:\n8:25-9:20: INST\n9:30-10:25: CF-2\n10:35-11:30: AM\n11:40-12:35: Dept Course\n1:30-


3:25: Tutorial(CF-1)\n");

printf("Friday:\n8:25-9:20: INST\n9:30-10:25: CF-2\n10:35-11:30: AM\n11:40-12:35: -\n1:30-3:25: CF-


2(Lab)\n");

break;

case 3:

printf("Monday:\n8:25-9:20: INST\n9:30-10:25: Cal\n10:35-11:30: EM\n11:40-12:35: CF-2\n1:30-3:25:


Tutorial(INST)\n");

printf("Tuesday:\n8:25-9:20: Cal\n9:30-10:25: -\n10:35-11:30: EM\n11:40-12:35: Dept Course\n1:30-3:25: -\


n");

printf("Wednesday:\n8:25-9:20: -\n9:30-10:25: Cal\n10:35-11:30: EM\n11:40-12:35: Dept Course\n1:30-


3:25: -\n");

printf("Thursday:\n8:25-9:20: INST\n9:30-10:25: CF-2\n10:35-11:30: AM\n11:40-12:35: Dept Course\n1:30-


3:25: Tutorial(CF-1)\n");
printf("Friday:\n8:25-9:20: INST\n9:30-10:25: CF-2\n10:35-11:30: AM\n11:40-12:35: -\n1:30-3:25: CF-
2(Lab)\n");

break;

case 4:

printf("Monday:\n8:25-9:20: INST\n9:30-10:25: MM\n10:35-11:30: EM\n11:40-12:35: CF-2\n1:30-3:25:


Tutorial(INST)\n");

printf("Tuesday:\n8:25-9:20: MM\n9:30-10:25: -\n10:35-11:30: EM\n11:40-12:35: Dept Course\n1:30-3:25:


-\n");

printf("Wednesday:\n8:25-9:20: -\n9:30-10:25: MM\n10:35-11:30: EM\n11:40-12:35: Dept Course\n1:30-


3:25: -\n");

printf("Thursday:\n8:25-9:20: INST\n9:30-10:25: CF-2\n10:35-11:30: AM\n11:40-12:35: Dept Course\n1:30-


3:25: Tutorial(CF-2)\n");

printf("Friday:\n8:25-9:20: INST\n9:30-10:25: CF-2\n10:35-11:30: AM\n11:40-12:35: -\n1:30-3:25: CF-


2(Lab)\n");

break;

default:

printf("Enter the integer from 1 to 4");

return 0;

You might also like