Ask Experts Questions for FREE Help !
Ask

Search:

Type: Posts; User: WildProgrammer

Search: Search took 0.00 seconds.

  1. Question: Times ten

    by WildProgrammer
    Answers
    1
    Views
    881

    #include int timeten(int x); int...

    #include <stdio.h>

    int timeten(int x);

    int main(void)
    {
    int number = 10;
    int x = timeten(number);
    printf("\n\n%i\n\n",x);
    }
  2. Answers
    2
    Views
    1,153

    Hello! main is the principal structure of any...

    Hello!

    main is the principal structure of any C++ program it normaly have 3 part, usually you will see it like this

    int main(void)
    {
    your code here
    return 0
    }
  3. Answers
    2
    Views
    1,299

    Hello! The scope of a variable mean wher in...

    Hello!

    The scope of a variable mean wher in the program your variable will be accessible to your code. Depending where it is declare the scope will vary,if you declare it into a function it will...
  4. Answers
    2
    Views
    1,595

    Stdio.h is a librairy of c++ standard IO function...

    Stdio.h is a librairy of c++ standard IO function by adding #include <stdio.h> at the beginning of your code give you access to all those function in your code.

    For example printf, scanf etc are...
  5. Question: Ask key c

    by WildProgrammer
    Answers
    1
    Views
    1,286

    Hello! Here a snip set of code in c++ that ask...

    Hello!

    Here a snip set of code in c++ that ask for a lower case letter and make it Capital you should have what you need in there. Good luck.

    #include <stdio.h>



    int main(int argc, char*...
Results 1 to 5 of 6