Changes between Version 3 and Version 4 of cypress/FileEditingSoftware/Example
- Timestamp:
- 08/19/15 19:52:40 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/FileEditingSoftware/Example
v3 v4 24 24 === Challenge === 25 25 Create a new file named ''helloworld.c'' that contains the following text 26 27 {{{#!c 28 #include<stdio.h> 29 30 int main(){ 31 printf("Hello World\n"); 32 return 0; 33 } 34 }}} 35 36 compile the above text using the following command 37 38 {{{ 39 [tulaneID@cypress1 ~]$ gcc helloworld.c -o helloworld 40 }}}