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 the use of typedef in structure in c?
How do I get a null pointer in my programs?
What is #include stdlib h?
What is the acronym for ansi?
how to make a scientific calculater ?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is zero based addressing?
What is difference between structure and union in c programming?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
What is the use of extern in c?
c program to compute AREA under integral
How do you write a program which produces its own source code as output?
Why is python slower than c?
What is the g value paradox?
In a switch statement, explain what will happen if a break statement is omitted?