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
What is an example of structure?
What language is lisp written in?
Difference between MAC vs. IP Addressing
What is the heap in c?
Can a pointer point to null?
Is boolean a datatype in c?
Why is c still so popular?
Why C language is a procedural language?
What are the two types of structure?
why we wont use '&' sing in aceesing the string using scanf
about c language
Differentiate between a structure and a union.
Is malloc memset faster than calloc?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
Is it possible to use curly brackets ({}) to enclose single line code in c program?