📜  在 c 中不使用头文件的情况下打印 hello world - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:08.606000             🧑  作者: Mango

代码示例1
//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