C print without including headers code example
Example: printing hello world without using header file in c
//hello guys here i am going to print hello world without using header file stdio.h
int printf(const char* string,...);
int main()
{
printf("hello world");
}
/*you must know that a header file just contains the declarations ,so i have
declared printf function here*/
//Code By dungriyal