what will be the output off the following program?
#include<stdio.h>
int main()
{
int a;
a=015+0*71+5;
printf("%d,a");
return0;
}
Answer Posted / shilpa sarkar
error occurs in format
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
What is an expression?
What is c definition?
What is a union?
diff between exptected result and requirement?
Explain what math functions are available for integers? For floating point?
How does selection sort work in c?
Is sizeof a keyword in c?
How many levels of indirection in pointers can you have in a single declaration?
Can one function call another?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
Can a file other than a .h file be included with #include?
What is double pointer in c?
Can you return null in c?
Is calloc better than malloc?
How can I split up a string into whitespace-separated fields?