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 17:56] – [Prerequisites] acrowle1user:acrowle1:portfolio:cprogproject1 [2014/02/02 19:30] (current) – [Attributes] acrowle1
Line 1: Line 1:
 ======Project: Hello World!====== ======Project: Hello World!======
  
-A project for CSCS1320S14 by Alana Whittier during the Spring 2014.+A project for CSCS1320S14 by Alana Whittier during the Spring 2014 Semester.
  
-This project was begun in lab on January 23, 2014. It took about 10 minutes to complete although I presume it would have taken significantly less time if I were more experienced with Unix/Linux as well as C programming language.+This project was begun in lab on January 23, 2014. It took about 10 minutes to complete although I presume it would have taken significantly less time if I were more experienced with Unix/Linux Terminal, as well as C programming language.
  
 =====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 19: Line 19:
  
 =====Background===== =====Background=====
-State the idea or purpose of the projectWhat are you attempting to pursue?+"Hello World!" is a simple program used in a variety of program languages to serve as an introduction and first program to help familiarize the new user with various aspects of the program, such as syntax, libraries, functions, etcIn this course, C programming, this basic program is also used to call the standard input/output header file, define the main function, and print a string of character text with the compiler, assuming correct Syntax is used. 
  
-Upon approval, you'll want to fill this section out with more detailed background information. DO NOT JUST PROVIDE A LINK. 
  
-Providing any links to original source material, such as from a project page, is a good idea. 
- 
-You'll want to give a general overview of what is going to be accomplished (for example, if your project is about installing a web server, do a little write-up on web servers. What is it, why do we need one, how does it work, etc.) 
  
 =====Scope===== =====Scope=====
-Give a general overview of your anticipated implementation of the project. Address any areas where you are making upfront assumptions or curtailing potential detail. State the focus you will be taking in implementation.+The scope of this project is to write a program where a character string "Hello World" is returned if compiled successfully.
  
 =====Attributes===== =====Attributes=====
 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 43: 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.1391363786.txt.gz · Last modified: 2014/02/02 17:56 by acrowle1