Search:

Type: Posts; User: cauberong09

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    1,838

    You should review how to open a file.

    You should review how to open a file.
  2. Thread: Factorial

    by cauberong09
    Replies
    3
    Views
    922

    After each loop "for" value "fact" not restart to...

    After each loop "for" value "fact" not restart to 1.In addtion,the loop will run forever.
  3. Replies
    18
    Views
    1,844

    Explain to me why it is undefined behavior?....

    Explain to me why it is undefined behavior?.
    fflush - C++ Reference
  4. Replies
    18
    Views
    1,844

    I'm sorry,but I want to study here!.Of course,I...

    I'm sorry,but I want to study here!.Of course,I has learning in the forum of my native language.
  5. Replies
    9
    Views
    1,163

    Oh,I am sorry,I will notice after.Thanks you.

    Oh,I am sorry,I will notice after.Thanks you.
  6. Replies
    9
    Views
    1,163

    You include the library only once before main...

    You include the library only once before main function and add prototype before using it in main.
    Example:

    //Include the library
    #include <stdio.h>
    //prototype of function
    int transp();...
  7. Replies
    5
    Views
    1,626

    Error your basic. Sorry my english is very bad!.

    Error your basic.
    Sorry my english is very bad!.
  8. Replies
    18
    Views
    1,844

    #include #include #include...

    #include <stdio.h>
    #include <conio.h>
    #include <ctype.h>
    void main()
    {
    int count=0;
    char c;
    printf("Enter a charracter:");
    do
    {
  9. Replies
    5
    Views
    1,459

    You forget that the library where the program?...

    You forget that the library where the program?
    Sorry my english is very bad.
  10. Replies
    4
    Views
    1,213

    Bool is a primitive data type as int,float.It...

    Bool is a primitive data type as int,float.It only return two values:true or false.As in the:
    while(goAgain) equivalent to while(goAgain==1) with goAgain variable declare bool data type.
    Do I...
  11. Replies
    5
    Views
    1,094

    When using integer fraction will be truncated....

    When using integer fraction will be truncated.
    Solution:add .0 extentions for integer(example:47.0/15) or type casting it(example:sum=(float(47),15)).
    Sorry my english is very bad!.
Results 1 to 11 of 12