What is printf in c programming ?
Answer:
In C programming, printf() is one of the main output
function. The function sends formatted output to the screen. For example,
int main()
{
printf("Hello World");
return 0;
}
Output : Hello World
Tutor4Youu: Is a dedicated website to provide quality online education to Computer Science Students .
Comments
Post a Comment