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 / aravind
error bcoz of format specifier.
| Is This Answer Correct ? | 11 Yes | 7 No |
Post New Answer View All Answers
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What are the 4 types of organizational structures?
Why dont c comments nest?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Why is it usually a bad idea to use gets()? Suggest a workaround.
When should structures be passed by values or by references?
What are the advantages of using new operator as compared to the function malloc ()?
Why pointers are used in c?
How can I write a function that takes a format string and a variable number of arguments?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Write a program for Overriding.
Explain how can a program be made to print the name of a source file where an error occurs?
What is pass by reference in functions?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
How can I call a function with an argument list built up at run time?