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


Please Help Members By Posting Answers For Below Questions

Should a function contain a return statement if it does not return a value?

612


Why clrscr is used in c?

599


Who is the main contributor in designing the c language after dennis ritchie?

566


Place the #include statement must be written in the program?

584


write a program to print data of 5 five students with structures?

1624






Describe static function with its usage?

627


write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.

3350


Are comments included during the compilation stage and placed in the EXE file as well?

686


What is difference between array and pointer in c?

552


What oops means?

598


What does the c preprocessor do?

635


Differentiate Source Codes from Object Codes

845


Is file a keyword in c?

518


Explain high-order and low-order bytes.

684


Compare array data type to pointer data type

609