int a=0,b=2;
if (a=0)
b=0;
else
b=*10;
What is the value of b ?
Answer Posted / guest
0
| Is This Answer Correct ? | 8 Yes | 7 No |
Post New Answer View All Answers
How will you find a duplicate number in a array without negating the nos ?
What functions are in conio h?
What is C language ?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
write a program to create a sparse matrix using dynamic memory allocation.
Do you know null pointer?
What is the purpose of 'register' keyword in c language?
How are strings stored in c?
What is the use of typedef in c?
can anyone please tell about the nested interrupts?
please send me the code for multiplying sparse matrix using c
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What does char * * argv mean in c?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??