Search:

Type: Posts; User: ottomated

Search: Search took 0.00 seconds.

  1. finished it. its working.. ...

    finished it.
    its working..




    /*--------------------------------------------------------------------------------------------------------
    | Reverse Polish Calculator
    | Now you can...
  2. right now I have pointers being compared to...

    right now I have pointers being compared to characters.
    how do I solve that?
    how do you use temp vars?
  3. how do you do that?

    how do you do that?
  4. the compiler errors are from if statements that I...

    the compiler errors are from if statements that I do not know how to set the conditions of...




    if (c == "chs")
    {
    if (
    {...
  5. Postfix (reverse polish notation) calculator

    hi, I am working on another project. For this one I have to create a reverse polish notation calculator. I have almost everything down but I do not know how to continue. I can only get single...
  6. I present you... the most useless piece of code...

    I present you...
    the most useless piece of code ever written...
    but it works...

    the program takes everything from starting dates and ending dates with different years...
    starting and ending...
  7. ok i rewrote the program. the program compiles...

    ok i rewrote the program.
    the program compiles again...KINDDA does what I want it to do. (yay for me)
    but it does not execute correctly.




    #include <stdio.h>
    int main()
    {
  8. Generating Dates! Compiles but does not work...

    I want the program to take in starting date and ending dates..and then its supposed to generate a list of dates in between the starting and ending date.

    for example...i put 5/1 2009 to 5/4 2009...
  9. Replies
    10
    Views
    1,893

    It Workssss!!!!

    finally the program works!




    /*--------------------------------------------------------------------------------------------------------
    | Pizza Comparison
    | Now you can easily...
  10. Replies
    10
    Views
    1,893

    gives me the following results.. /Pizza2.exe...

    gives me the following results..

    /Pizza2.exe
    Welcome to pizza comparator
    Enter the number of deals currently available
    2
    enter pizza name:
    enter size:
    pizzaone 10
    enter price:
  11. Replies
    10
    Views
    1,893

    #include ...

    #include <stdio.h>


    struct PizzaDeals
    {
    char PizzaCompanyName[32];
    float pizzaSize;
    ...
  12. Replies
    10
    Views
    1,893

    now i get a link error for one of the printf...

    now i get a link error for one of the printf functions..
    it compiled but there were link errors...

    it says

    Undefined first referenced
    symbol ...
  13. Replies
    10
    Views
    1,893

    sorry for posting identical threads. that will...

    sorry for posting identical threads. that will not happen again.
    anyhow,


    I tried ordering the struct variable before the functions...
    fixed the array size to a integer...

    and I get a scanf...
  14. Replies
    10
    Views
    1,893

    Cannot Compile Code!

    I wrote this...


    #include <stdio.h>

    /*organize a structure*/
    struct PizzaDeals
    {
    char PizzaCompanyName[32];
    ...
  15. Replies
    5
    Views
    1,703

    the error message from my compiler ...

    the error message from my compiler





    #include <stdio.h>
    10.
    11. /*organize a structure*/
    12. struct PizzaDeals
  16. Replies
    5
    Views
    1,703

    so i came up with this... #include...

    so i came up with this...




    #include <stdio.h>

    /*organize a structure*/
    struct PizzaDeals
    {
  17. Replies
    5
    Views
    1,703

    using loops to compare pizza prices

    I am trying to write a program that prompts the user to enter different pizza size combinations for easy comparison. The program will decipher which pizzeria offers the cheapest pizza per square...
Results 1 to 17 of 17