Thread: Newbie here trying to teach myself programming in c

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User
    Join Date
    Feb 2006
    Posts
    33

    Question Newbie here trying to teach myself programming in c

    Ok I am trying to teach myself programming in c but I am lost. I have gotten through the first few tutorials but I am stuck on this one.

    I need my output to be as the following:

    This program will do some computations.

    The two numbers I am using in this program are 63 and 25.

    The Sum of 63 plus 25 is 88.


    This is what i have written so far but I am so lost on this. Can someone tell me what I am doing wrong? Please I am getting an error on line 12 at the {
    Code:
    /*mavrakp1.c */
    /*Created by Colleen Mavrakos 2/7/2006 */
    
    #include <stdio.h>
    
    main () {
    
    	 printf("This program will do some computations\n");
    	 printf("The two numbers I am using in this program are 63 and 25.\n");
    	 return 0;
    }
    {
    	 int sum;
    	 sum = 63 + 25;
    	 printf ("The Sum of 63 and 25 is %i\n", sum);
    
    }
    or should it be something like this:

    Code:
    /*mavrakp1.c */
    /*Created by Colleen Mavrakos 2/7/2006 */
    
    #include <stdio.h>
    
    main () {
    
    	 printf("This program will do some computations\n");
    	 printf("The two numbers I am using in this program are 63 and 25.\n");
    	 return 0;
    
    {
    	 int  sum;
    	 int  num1 = 63;
    	 int  num2 = 25;
    
    	 sum = num1 + num2;    // addition
    }
    I get the second one to run with no errors but the "The sum of 63 plus 25 is 88" is not showing up.
    Last edited by paulntysmom; 02-08-2006 at 09:51 AM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Newbie with Very Newbie Question
    By Jedi_Mediator in forum C++ Programming
    Replies: 18
    Last Post: 07-01-2008, 08:00 AM
  2. newbie: array question :(
    By cstudent in forum C Programming
    Replies: 2
    Last Post: 04-09-2008, 06:46 AM
  3. Nothing but newbie.
    By Jimmey in forum C++ Programming
    Replies: 10
    Last Post: 07-03-2005, 11:23 PM
  4. Newbie Programmer
    By Extropian in forum C++ Programming
    Replies: 3
    Last Post: 05-18-2004, 01:17 PM
  5. Newbie Game Develpoers Unite!
    By Telenosis in forum Game Programming
    Replies: 10
    Last Post: 06-22-2002, 02:02 PM