Compiler : Using "gcc"
Hands-on
1. vi hello.c
2. start writing :
---------
#include
main(void){
printf("Hello C World !\n");
}
---------
3. Start compile :
---
#gcc -o hello.out hello.c
---
4. Start running :
---
# ./hello.out
---
C Program's IDE under linux system : RHIDE
No comments:
Post a Comment