Search:

Type: Posts; User: raj.knd

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    1,233

    Thank you for your help. From now on I'll use...

    Thank you for your help. From now on I'll use Pelles C..:)
  2. Replies
    10
    Views
    1,233

    Friends different compilers gives different...

    Friends different compilers gives different output. How do I understand which one is correct?
  3. Replies
    10
    Views
    1,233

    That same value 20 25. #include...

    That same value 20 25.



    #include<stdio.h>
    void main()
    {
    int i=3,j=3,a,b;
    a=++i*++i;
    b=++j*++j;
  4. Replies
    10
    Views
    1,233

    Just now I compiled the code using Pelles C...

    Just now I compiled the code using Pelles C compiler and output 20 20 on same Windows platform.
  5. Replies
    7
    Views
    1,645

    Thank you Tater. I will try to get that one.

    Thank you Tater. I will try to get that one.
  6. Replies
    7
    Views
    1,645

    Yes. I made the changes and got the answer. Thank...

    Yes. I made the changes and got the answer. Thank you.
  7. Replies
    10
    Views
    1,233

    why both the value a and b are different?

    #include<stdio.h>
    void main()
    {
    int i=3,j=3,b;
    int a=++i*++i;
    b=++j*++j;
    printf("%d\n%d",a,b);
    }
  8. Replies
    7
    Views
    1,645

    I am using Turbo C 4.5 on Windows 7 platform

    I am using Turbo C 4.5 on Windows 7 platform
  9. Replies
    7
    Views
    1,645

    Cannot able to understand the output

    #include<stdio.h>
    void main()
    {
    printf("%%%%\n");
    }


    output:
    %%
  10. Replies
    6
    Views
    1,194

    Thanks. Its working. But if I want to do any...

    Thanks. Its working. But if I want to do any arithmetic operation will getc work? I think not.
  11. Replies
    6
    Views
    1,194

    That data is in a file. I am using TurboC 4.5. I...

    That data is in a file. I am using TurboC 4.5.
    I have already used that fflush(stdout);
  12. Replies
    6
    Views
    1,194

    not printing the last number

    1 2 3 4

    file "text1.txt" contain the above data



    #include<stdio.h>
    void main()
    {
    FILE *fp;
  13. Replies
    6
    Views
    1,098

    but it is privately derived..according to book is...

    but it is privately derived..according to book is is not possible.. thats why i am confusing...
  14. Replies
    6
    Views
    1,098

    tell me why the output is this????

    #include<iostream.h>
    #include<conio.h>

    class A
    {
    private :
    int a;
    };
    class B : private A
    {
Results 1 to 14 of 14