What is the difference between union and anonymous union?
No Answer is Posted For this Question
Be the First to Post Answer
What does *p++ do? What does it point to?
WHAT IS C?
HOW DO YOU HANDLE EXCEPTIONS IN C?
Explain what is the most efficient way to store flag values?
What is Function Pointer? Explain with example?
What is assignment operator?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
What is the scope of static variables?
program to find the ASCII value of a number
write a c program that prints all multiples of 3between 1 and 50.
What is the role of && operator in a program code?