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
Explain 'far' and 'near' pointers in c.
Explain the difference between malloc() and calloc() in c?
What are the benefits of organizational structure?
Write a program to check whether a number is prime or not using c?
How to get string length of given string in c?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What does %d do?
Describe explain how arrays can be passed to a user defined function
For what purpose null pointer used?
What is a function simple definition?
What is actual argument?
What are control structures? What are the different types?
application attempts to perform an operation?
Explain can you assign a different address to an array tag?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.