Mega Code Archive

 
Categories / C / Console
 

Output int value to console

#include <stdio.h> int main(void) {     printf("This is the number %d", 100);   return 0; }