Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Lab#01 F.

No: 4497

Lab1b

OBJECT: To print a line using printf command and Escape


sequences.

Source Code:
void main(void)
{
printf("\t\t\t \"BIO DATA\"\n");
printf("\t\t\t __________\n");
printf("\t Name: \" Mohammad Babar Munir \"\n");
printf("\t F.Name: \" Wasif Akhtar Siddique \"\n");
printf("\t Qualification: \" INTER \"\n");
printf("\t Phone: \" 03422218200 \"\n");
printf("\t Address: \" R-274 sec-16 A bufferzone \"\n");
printf("\t University: \" Sir Syed University of Engineering And
Technology \"\n");
printf("\t Form number: \' 4497 \'\n");
printf("\t Discipline: \' EE \'\n");
printf("\t Subject: \" Computer Fundamentals and Programming \"\n");
printf("\t Teacher: \" Sir Sarfaraz Nattha \"\n");
}

Result:

Computer Fundamentals & Programming Pg#2

You might also like