What is the difference between *p++ and (*p)++ ?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by enumerated data type?
What is a tuple c++?
Give 2 examples of a code optimization?
What is time_t c++?
What is "strstream" ?
What is function overriding?
Explain about vectors in c ++?
What are the advantages of using typedef in a program?
given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
What does asterisk mean in c++?
what is VOID?