Search:

Type: Posts; User: justine

Search: Search took 0.01 seconds.

  1. Replies
    13
    Views
    3,110

    Okey.

    Okey.
  2. Replies
    13
    Views
    3,110

    I was checking the action of each function: ...

    I was checking the action of each function:


    #include <stdio.h>
    using namespace stdin;
    int main()
    {
    char ch;
    printf("Press ant key to continue\n");
    getch();
  3. Replies
    13
    Views
    3,110

    laserlight...

    laserlight
    For doing exercise in my book.
    qny
    aware of that, qny
  4. Replies
    13
    Views
    3,110

    getch(), putch(), etc

    getch(), putch(), etc
  5. Replies
    13
    Views
    3,110

    Thank you. PS:In gcc no conio.h, what is the...

    Thank you.
    PS:In gcc no conio.h, what is the alternative?
  6. Replies
    13
    Views
    3,110

    lvalue required as increment operand

    #include <stdio.h>
    int main()
    {
    char a[]="Hello";
    while (*a!='\0')
    {
    printf("%c", *a);
    a++;
    }
    return 0;
Results 1 to 6 of 6