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:47] – [Project: YOUR PROJECT NAME HERE] 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=====
-State the purpose of this project. What is the point of this project? What do we hope to accomplish by undertaking it?+The purpose of this project was to familiarize us with both the C programming language as well as the Unix/Linux environmentIf the program is written correctly, a standard input/output header file is included, the main function is defined, and a string of text will be generated. 
  
 =====Prerequisites===== =====Prerequisites=====
 In order to successfully accomplish/perform this project, the listed resources/experiences need to be consulted/achieved: In order to successfully accomplish/perform this project, the listed resources/experiences need to be consulted/achieved:
  
-  * resource1 +  * Matthew Haas (lab instruction) 
-  * resource2 +  * Shawn Meas (lab assistant)
-  * resource3 +
-  * experience1 +
-  * experience2 +
-  * etc.+
  
-=====Background===== +I fully disclose that I did not consult any other documentation to complete this particular project. I relied on my notes and some help from Shawn.
-State the idea or purpose of the project. What are you attempting to pursue?+
  
-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.+=====Background===== 
 +"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 syntaxlibraries, functions, etc. In this course, C programming, this basic program is also used to call the standard input/output header file, define the main function, and print string of character text with the compiler, assuming correct Syntax is used 
  
-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.1391363240.txt.gz · Last modified: 2014/02/02 17:47 by acrowle1