init commit
This commit is contained in:
4
learncthehardway/3/Makefile
Normal file
4
learncthehardway/3/Makefile
Normal file
@ -0,0 +1,4 @@
|
||||
CFLAGS=-Wall -g
|
||||
|
||||
clean:
|
||||
rm -f ex1
|
BIN
learncthehardway/3/ex3
Executable file
BIN
learncthehardway/3/ex3
Executable file
Binary file not shown.
12
learncthehardway/3/ex3.c
Normal file
12
learncthehardway/3/ex3.c
Normal file
@ -0,0 +1,12 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
int age = 10;
|
||||
int height = 72;
|
||||
|
||||
printf("I am %d years old.\n", age );
|
||||
printf("I am %d inches tall.\n", height);
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user