main()
{
int a=0;
if(a=0) printf("Ramco Systems\n");
printf("India\n");
}
output?
Answer Posted / ripal
The output will produce error because there is error at if
(a=0).It should be if(a==0)
| Is This Answer Correct ? | 8 Yes | 7 No |
Post New Answer View All Answers
If errno contains a nonzero number, is there an error?
How many types of operators are there in c?
Why are all header files not declared in every c program?
What is extern variable in c with example?
Explain what is wrong with this program statement?
what is the structure pointer?
All technical questions
Why main is used in c?
What is structure in c definition?
a program that can input number of records and can view it again the record
What are c identifiers?
How do I read the arrow keys? What about function keys?
What is pointer to pointer in c?
code for find determinent of amatrix
Is exit(status) truly equivalent to returning the same status from main?