Search:

Type: Posts; User: rjjj

Search: Search took 0.00 seconds.

  1. Replies
    8
    Views
    1,516

    Replace this 12216: while (n!='13'); ...

    Replace this 12216:




    while (n!='13');



    With:
  2. That can be done with the usage of...

    That can be done with the usage of SetConsoleScreenBufferSize and SetConsoleWindowInfo when the program starts 12210:




    #include <stdio.h>
    #include <windows.h>
  3. Replies
    8
    Views
    1,389

    Yes, there is 12104: int isEven(int x){...

    Yes, there is 12104:




    int isEven(int x){
    return !(x%2);
    }
  4. Replies
    3
    Views
    1,037

    I am getting c equal to 9 and d equal to 4 11951....

    I am getting c equal to 9 and d equal to 4 11951.



    That is because the values of variables are modified after their increments:




    #include <stdio.h>
  5. Replies
    6
    Views
    1,374

    This should solve your problem 11947: ...

    This should solve your problem 11947:




    #include <stdio.h>


    int main(void)
    {
  6. Replies
    15
    Views
    2,249

    I think you want the GetCursorPos function 11874:...

    I think you want the GetCursorPos function 11874:




    #include <stdio.h>
    #include <windows.h>


    int main(void)
  7. Replies
    3
    Views
    1,076

    Create a pointer to the beginning of the array...

    Create a pointer to the beginning of the array 11872:




    #include <stdio.h>


    int main(void)
    {
  8. This should solve your problem 11863: ...

    This should solve your problem 11863:




    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
Results 1 to 8 of 15