Search:

Type: Posts; User: shivakumar

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    1,483

    What's the output

    #include<iostream.h>
    int x = 10 ;
    void main( )
    {
    int x = 20;
    ::x = x + ::x;
    cout <<x;
    }
  2. Thread: C book

    by shivakumar
    Replies
    1
    Views
    698

    C book

    Can anyone please tell me which book to refer to understand how each statement in c are compiled i.e How compiler is going to evaluate each statement.I know 'C' language and Data structures and have...
  3. Replies
    7
    Views
    1,689

    Thank you......

    Thank you......
  4. Replies
    7
    Views
    1,689

    What's the output

    #include<stdio.h>
    int fun(int num);
    void main()
    {
    int p,n=20;
    p=fun(n);
    printf("%d",p);
    getch();
    }
  5. Replies
    3
    Views
    3,772

    output of following c code

    #include<stdio.h>
    void main()
    {
    int a;
    printf("a contains %d\n");
    }
    this is giving some junk value where as


    #include<stdio.h>
Results 1 to 5 of 5