Write a program to print “Hello World” in C without using any header file.
Example:
Output: Hello World
Approach
C
//Declare the printf() function into//your programint printf(const char *format, ...);int main(){printf("Hello World");return 0;}
No comments:
Post a Comment