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 / srinivasu
18,a
| Is This Answer Correct ? | 12 Yes | 7 No |
Post New Answer View All Answers
How can I sort more data than will fit in memory?
What are the advantages of using linked list for tree construction?
What is the use of ?
What is time complexity c?
Can you return null in c?
Is null always equal to 0(zero)?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Why does everyone say not to use scanf? What should I use instead?
Give the rules for variable declaration?
How can I find the modification date and time of a file?
Tell us two differences between new () and malloc ()?
Can stdout be forced to print somewhere other than the screen?
What functions are used for dynamic memory allocation in c language?
How will you write a code for accessing the length of an array without assigning it to another variable?
Can we use any name in place of argv and argc as command line arguments?