15 lines
217 B
C
Raw Normal View History

2016-07-21 10:22:47 -07:00
#include <stdio.h>
/* Warning: This program is wrong on purpose. */
int main()
{
int age = 10;
int height;
printf("I am %d years old.\n");
printf("I am %d inches tall.\n", height);
return 0;
}