Answers for "printing hello world without using header file in c"

1

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
Posted by: Guest on October-10-2020
1

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
Posted by: Guest on October-10-2020

Browse Popular Code Answers by Language