Usually, we use header files in C/C language to access built-in functions, such as int, char, and string functions. The function printf() is also a built-in function, which is declared in the "stdio.h" header file and is used to print any type of data on the console.
The following is a sample code for printing in C language without using a header file:
int printf(const char *text, ...); int main() { printf( "Hello World" ); return 0; }
Hello World
int printf(const char *text, ...);
The above is the detailed content of In C language, print out 'Hello World' without using any header file. For more information, please follow other related articles on the PHP Chinese website!