User Tools

Site Tools


user:acrowle1:portfolio:cprogproject1

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
user:acrowle1:portfolio:cprogproject1 [2014/02/02 18:39] – [Scope] acrowle1user:acrowle1:portfolio:cprogproject1 [2014/02/02 19:30] (current) – [Attributes] acrowle1
Line 6: Line 6:
  
 =====Objectives===== =====Objectives=====
-The purpose of this project was to familiarize us with both the C programming language as well as the Unix/Linux environment. To become comfortable with finding the working directorylisting the source directorysaving script within the current directory, and compiling the script with GCC, are the primary reasons this project was assigned+The purpose of this project was to familiarize us with both the C programming language as well as the Unix/Linux environment. If the program is written correctlya standard input/output header file is included, the main function is defined, and a string of text will be generated.
  
  
Line 29: Line 29:
 State and justify the attributes you'd like to receive upon successful approval and completion of this project. State and justify the attributes you'd like to receive upon successful approval and completion of this project.
  
-  * attribute1: why you feel your pursuit of this project will gain you this attribute +  * attribute1: Upon successful compilation of the program, "Hello World!" will display on the screen. 
-  * attribute2: why you feel your pursuit of this project will gain you this attribute +  * attribute2:  
-  * etc...+  *
  
 =====Procedure===== =====Procedure=====
Line 39: Line 39:
 Upon completion of the project, if there is an applicable collection of created code, place a copy of your finished code within <nowiki><code> </code></nowiki> blocks here. Upon completion of the project, if there is an applicable collection of created code, place a copy of your finished code within <nowiki><code> </code></nowiki> blocks here.
  
-<code c> +<nano helloM-D.c> 
-/* +/*Hello.c  first C Program
- * hello.c sample "Hello, World!" program +
- *  +
- * written by NAME for COURSE on DATE +
- * +
- * compile with: +
-   gcc -o hello hello.c +
- * +
- * execute with: +
-   ./hello +
- */+
  
-#include <stdio.h>+written by Alana Whittier for  CSCS1320S14 on January 23, 2014
  
 +*/
 +
 +#include <stdio.h>
 int main() int main()
-{ + 
-    printf("Hello, World!\n");    // Output message to STDOUT +{       printf("Hello, World!\n"); 
-    return(0);+        return (0)
 } }
 +
 +
 +
 </code> </code>
  
 =====Execution===== =====Execution=====
-Again, if there is associated code with the project, and you haven't already indicated how to run it, provide a sample run of your code:+
  
 <cli> <cli>
-lab46:~/src/cprog$ ./hello+lab46:~/src/cscs1320$ ./helloM-D
 Hello, World! Hello, World!
-lab46:~/src/cprog+lab46:~/src/cscs1320 
 + 
 + 
 </cli> </cli>
  
 =====Reflection===== =====Reflection=====
-Comments/thoughts generated through performing the project, observations madeanalysis rendered, conclusions wroughtWhat did you learn from doing this project?+When I consider this project, while quite simple and relatively easy to understandthe most difficult part to me was working remotely in Lab46 from homeIt required a bit of work to learn to save in a Windows (DOS) format to compile and execute the code.  
 + 
  
 =====References===== =====References=====
user/acrowle1/portfolio/cprogproject1.1391366367.txt.gz · Last modified: 2014/02/02 18:39 by acrowle1