0% found this document useful (0 votes)
19 views1 page

Lab1a: OBJECT: To Print A Line Using Printf Command. Source Code

This lab report documents a C programming exercise to print a line of text using the printf command. The source code contains a main function that uses printf to output the text "Section "C"" with tab formatting. When run, the program successfully prints the formatted line as the result.

Uploaded by

Babar
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)
19 views1 page

Lab1a: OBJECT: To Print A Line Using Printf Command. Source Code

This lab report documents a C programming exercise to print a line of text using the printf command. The source code contains a main function that uses printf to output the text "Section "C"" with tab formatting. When run, the program successfully prints the formatted line as the result.

Uploaded by

Babar
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/ 1

Lab#01 F.

No: 4497

Lab1a

OBJECT: To print a line using printf command.

Source Code:

void main(void)
{
printf("\t\t Section \" C\"");
}

Result:

Computer Fundamentals & Programming Pg#1

You might also like