print to console in c

Solutions on MaxInterview for print to console in c by the best coders in the world

showing results for - "print to console in c"
Johann
18 Jun 2016
1#include <stdio.h>
2
3void main(void) {
4	printf("Hello, World!");
5}
Leia
28 Oct 2018
1printf("string");