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
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is a list in c?
What is a scope resolution operator in c?
What is non linear data structure in c?
What is a stream in c programming?
What is void main () in c?
What is a function in c?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is the importance of c in your views?
What is the difference between printf and scanf in c?
Explain what are multibyte characters?
How do you convert strings to numbers in C?
How can I invoke another program or command and trap its output?
What is the meaning of ?
How can my program discover the complete pathname to the executable from which it was invoked?