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 / sandeep bussa
18
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Why is this loop always executing once?
What are the characteristics of arrays in c?
Write a program to swap two numbers without using third variable in c?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Sir i need notes for structure,functions,pointers in c language can you help me please
Can static variables be declared in a header file?
Does free set pointer to null?
Between macros and functions,which is better to use and why?
What is the use of clrscr?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Tell me what is null pointer in c?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What is meant by realloc()?
What is #define size in c?
What is the difference between a string and an array?