what is the value of b
if a=5;
b=++a + ++a
Answer Posted / nitin jatpuriya
14
| Is This Answer Correct ? | 15 Yes | 22 No |
Post New Answer View All Answers
How can you avoid including a header more than once?
What are header files in c?
What’s a signal? Explain what do I use signals for?
What is string constants?
What is the collection of communication lines and routers called?
What is structure padding and packing in c?
What is typedef?
string reverse using recursion
If I have a char * variable pointing to the name of a function ..
What is array in c with example?
What is echo in c programming?
What is keyword with example?
What is the difference between near, far and huge pointers?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }