what is the value of b
if a=5;
b=++a + ++a
Answers were Sorted based on User's Feedback
What does the c preprocessor do?
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
Describe advantages and disadvantages of the various stock sorting algorithms
What tq means in chat?
What is the stack in c?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
how to construct a simulator keeping the logical boolean gates in c
How many bytes is a struct in c?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Why is c so popular?
c program to manipulate x=1!+2!+3!+...+n! using recursion