Mega Code Archive

 
Categories / C / Code Snippets
 

Print a int with a string

#include <stdio.h> int main(void) { int j; j = 666; printf("%d is the value of j", j); return 0; }