Mega Code Archive

 
Categories / C Tutorial / Printf Scanf
 

The printf() function redirects the output to a standard output, which is the output on screen

#include <stdio.h> main(){   printf("Hi \n"); } Hi