what is the value of b
if a=5;
b=++a + ++a
Answers were Sorted based on User's Feedback
What is a const pointer?
What's a "sequence point"?
Can you pass an entire structure to functions?
Explain the array representation of a binary tree in C.
write a c program in such a way that if we enter the today date the output should be next day's date.
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
Three major criteria of scheduling.
Why array is used in c?
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
What is the purpose of 'register' keyword?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.