15 lines
217 B
C
15 lines
217 B
C
|
#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;
|
||
|
}
|