int a=0,b=2;
if (a=0)
b=0;
else
b=*10;
What is the value of b ?
Answer Posted / sonukrrock
20
| Is This Answer Correct ? | 28 Yes | 11 No |
Post New Answer View All Answers
Why header file is used in c?
What is the difference between constant pointer and constant variable?
Create a simple code fragment that will swap the values of two variables num1 and num2.
What is the difference between printf and scanf )?
Can you please explain the difference between strcpy() and memcpy() function?
What is the difference between a string and an array?
What is methods in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is a nested formula?
Why is it important to memset a variable, immediately after allocating memory to it ?
With the help of using classes, write a program to add two numbers.
How does pointer work in c?
Write a factorial program using C.
Why doesnt this code work?
What is a double c?