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

Is null equal to 0 in sql?

864


What is void c?

774


What is the difference between volatile and const volatile?

745


What is data structure in c language?

832


Why doesn't C support function overloading?

2158


Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer

4092


What is data types?

808


How do you construct an increment statement or decrement statement in C?

989


What is c++ used for today?

865


What is an operator?

845


What is the difference between procedural and declarative language?

883


Is there any data type in c with variable size?

849


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

927


Explain what is wrong with this program statement?

854


What are the characteristics of arrays in c?

805