0

Source Code


/* C Program to print a sentence. */
#include <stdio.h>
int main()
{
printf
("C Programming"); /* printf() prints the content inside quotation */
return 0;
}

Output


C Programming

Explanation

Every C program starts executing code from main( ) function. Inside main( ), there is a printf( ) function which prints the content inside the quotation mark which is "C Programming" in this case. Learn more about output in C programming language.



Post a Comment Blogger

Emoticon
:) :)) ;(( :-) =)) ;( ;-( :d :-d @-) :p :o :>) (o) [-( :-? (p) :-s (m) 8-) :-t :-b b-( :-# =p~ $-) (b) (f) x-) (k) (h) (c) cheer
Click to see the code!
To insert emoticon you must added at least one space before the code.

 
Top