# gcc -o userinfo userinfo.c
# ./userinfo
Name : Yoo
Age : 18
Name : Kim
Age : 19
Name : Park
Age : 20
Name : Yuri
Age : 28
Name : Poorman
Age : 28
/*** Friend List ***/
Yoo             : 18
Kim             : 19
Park            : 20
Yuri             : 28
Poorman      : 28
#


'Programming > Linux Coding' 카테고리의 다른 글

Ex07. simplecalc.c - libmycalc.a (static library)  (0) 2016.02.22
Ex06. simplecalc.c  (0) 2016.02.22
Ex04. array_char.c  (0) 2016.02.22
Ex03. hello_pat.c  (0) 2016.02.22
Ex02. Sum.c  (0) 2016.02.22

# gcc -o array_char array_char.c
# ./array_char
hello world
#


'Programming > Linux Coding' 카테고리의 다른 글

Ex06. simplecalc.c  (0) 2016.02.22
Ex05. userinfo.c  (0) 2016.02.22
Ex03. hello_pat.c  (0) 2016.02.22
Ex02. Sum.c  (0) 2016.02.22
Ex01. Hello.c  (0) 2016.02.22

# gcc -o hello_pat ./hello_pat.c
# hello_pat dog cat
number of animal : 2

Hello dog
Hello cat
#


'Programming > Linux Coding' 카테고리의 다른 글

Ex06. simplecalc.c  (0) 2016.02.22
Ex05. userinfo.c  (0) 2016.02.22
Ex04. array_char.c  (0) 2016.02.22
Ex02. Sum.c  (0) 2016.02.22
Ex01. Hello.c  (0) 2016.02.22

# gcc -o sum sum.c
# ./sum
# echo $?
9
#


'Programming > Linux Coding' 카테고리의 다른 글

Ex06. simplecalc.c  (0) 2016.02.22
Ex05. userinfo.c  (0) 2016.02.22
Ex04. array_char.c  (0) 2016.02.22
Ex03. hello_pat.c  (0) 2016.02.22
Ex01. Hello.c  (0) 2016.02.22

# gcc -o hello hello.c
# ./hello
Hello World
#



'Programming > Linux Coding' 카테고리의 다른 글

Ex06. simplecalc.c  (0) 2016.02.22
Ex05. userinfo.c  (0) 2016.02.22
Ex04. array_char.c  (0) 2016.02.22
Ex03. hello_pat.c  (0) 2016.02.22
Ex02. Sum.c  (0) 2016.02.22

+ Recent posts