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

Intro to General C Programming

This short C program prints a greeting message "HELLO .....HOW ARE YOU" using the printf function, and returns 0 to indicate successful execution to the operating system using the return function. It includes the standard input/output header file stdio.h needed for printf.
Copyright
© Attribution Non-Commercial (BY-NC)
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)
71 views1 page

Intro to General C Programming

This short C program prints a greeting message "HELLO .....HOW ARE YOU" using the printf function, and returns 0 to indicate successful execution to the operating system using the return function. It includes the standard input/output header file stdio.h needed for printf.
Copyright
© Attribution Non-Commercial (BY-NC)
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

GENERAL C PROGRAM: /*GENERAL C PROGRAM FOR BEGINNERS*/ #INCLUDESTDIO.H MAIN() { PRINTF(HELLO ..

HOW ARE YOU); RETURN(0); }

You might also like