Search:

Type: Posts; User: stormbreaker

Search: Search took 0.01 seconds.

  1. On another subject could you help me scoop the...

    On another subject could you help me scoop the bugs out of this code?


    #include <iostream.h>
    using namespace std;

    int main()
    int answer;
    {
    cout<<"You are sitting in your seat comfortably...
  2. It's pretty much all the code and I'm using...

    It's pretty much all the code and I'm using bloodshed.
  3. already checked those and since I don't know how...

    already checked those and since I don't know how to navigate my way trough dos and my pause command doesn't always work, I posted it here.
  4. nope, doesn't work.

    nope, doesn't work.
  5. how to get the file not to shud down right away

    I've got a problem. Unless I add a line of text to pause( wich doesn't even always work) My program always immediately shuds down after it's done what it's got to do, leaving me no time to read it or...
  6. Replies
    5
    Views
    1,239

    could you also give me a list of the different...

    could you also give me a list of the different streams like iostream and that stuff and what their functions are?
  7. Replies
    5
    Views
    1,239

    how do you declare code?

    #include <iostream>
    int main()
    {
    int age;
    char string[256];
    cout<<"Please enter your name and birthdate: ";
    cin>>string>>age;
    cout<<"Welcome"<<string<<","<<age<<endl;
    system ("pause");...
  8. Replies
    4
    Views
    1,957

    thx it works now.

    thx it works now.
  9. Replies
    4
    Views
    1,957

    struct database { int id_number; int age;...

    struct database
    {
    int id_number;
    int age;
    float salary;
    };
    int main()
    {
    database employee; //There is now an employee variable that has modifiable
    //variables inside it.
  10. Replies
    4
    Views
    1,957

    yet another unexplainable flaw

    struct database
    {
    int id_number;
    int age;
    float salary;
    };
    int main()
    {
    database employee; //There is now an employee variable that has modifiable
    //variables inside it.
  11. Replies
    16
    Views
    2,843

    well, this is going to sound very nooby, the fact...

    well, this is going to sound very nooby, the fact is that when an aplication is done and the finaltext is being viewed it immediately shuts down, giving me no time to read it. Thats why I made a loop...
  12. Replies
    16
    Views
    2,843

    oh and it says something about backward_warning.h

    oh and it says something about backward_warning.h
  13. Replies
    16
    Views
    2,843

    Could you change it to make it work or something?

    Could you change it to make it work or something?
  14. Replies
    16
    Views
    2,843

    what's wrong with this code

    #include <iostream.h>
    int main()
    {
    for (char x)
    (
    char x;
    cout<<" Please imput name.";
    cin>>x
    cout<<" Welcome,"<<char x;
    )
Results 1 to 14 of 14