stdio.h
ヘッダー ファイルとしてインクルードせずに C プログラムを作成する方法はありますか。宣言することで実装できることが示唆されたextern int scanf(char* format, ...);
#include <stdio.h> //I want this same code to work without including this line
int main ()
{
char str [80];
scanf ("%s",str);
return 0;
}