cooper-union-ece-160/2-introduction-to-c-program.../5-printf.c

11 lines
158 B
C

#include <stdio.h>
#include <stdlib.h>
int main() {
int favNum = 90;
char myChar = 'i';
printf("My favorite %c is %d", myChar, favNum);
return 0;
}