Search results

  1. M

    do if u can??

    Assume that stack grows towards lower addresses. Also assume that variables are pushed on to the stack in the order in which they are declared. main() { int x, y ; int *p1 = &x; int *p2 = &y; printf("%d\n", (int)p1-(int)p2); }
  2. M

    what will be output of this code.?

    int main() { printf("%d, %d, %d", sizeof(3.0f), sizeof('3'), sizeof(3.0)); return 0; }
  3. M

    Dangerous sport

    Playing Cards is Highly risky. It can change all your fate in seconds without any physical damage......... :D
  4. M

    Real Time and Non Real Time OS

    What is the difference between real time operating system and non real time operating system regarding multi-processing???.......
  5. M

    I have a doubt in C++. plz let me know

    Just I like to know what is virtual destructor and the usage of it.?????
  6. M

    what will be output of this code.?

    thank you dude..
  7. M

    what will be output of this code.?

    thank you, can you explain the reason???
  8. M

    what will be output of this code.?

    int main() { int i=-3, j=2, k=0, m; m = ++i && ++j || ++k; printf("%d, %d, %d, %d\n", i, j, k, m); return 0; }
Back
Top