Search:

Type: Posts; User: Saurabh Mehta

Search: Search took 0.00 seconds.

  1. Replies
    10
    Views
    2,470

    @salem thankyou for your answer I agree to your...

    @salem thankyou for your answer I agree to your point..but then what about the following code

    int foo(){return 5;}int main(){ printf("%d",sizeof(foo())); return 0;}
    here the call to foo() is...
  2. Replies
    10
    Views
    2,470

    sizeof operator in c

    Is the sizeof operator in c a compile time or run time operator..Because the following code works fine with a gcc compiler

    int a;
    scanf("%d",&a);
    printf("%d",sizeof(a));But I...
Results 1 to 2 of 2