Changes between Version 3 and Version 4 of cypress/FileEditingSoftware/Example


Ignore:
Timestamp:
08/19/15 19:52:40 (9 years ago)
Author:
cmaggio
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/FileEditingSoftware/Example

    v3 v4  
    2424=== Challenge ===
    2525Create a new file named ''helloworld.c'' that contains the following text
     26
     27{{{#!c
     28#include<stdio.h>
     29
     30int main(){
     31             printf("Hello World\n");
     32             return 0;
     33}
     34}}}
     35
     36compile the above text using the following command
     37
     38{{{
     39[tulaneID@cypress1 ~]$ gcc helloworld.c -o helloworld
     40}}}