Answers for "print hello world without using printf in c"

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

C# Answers by Framework

Browse Popular Code Answers by Language