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
Why do we use namespace feature?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Why is structure important for a child?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Describe explain how arrays can be passed to a user defined function
How can I ensure that integer arithmetic doesnt overflow?
What is main () in c?
Why we use stdio h in c?
Can we increase size of array in c?
What are called c variables?
What is extern storage class in c?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Are the variables argc and argv are local to main?
What is the difference between printf and scanf in c?
Explain what does a function declared as pascal do differently?