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
Is null equal to 0 in sql?
What is void c?
What is the difference between volatile and const volatile?
What is data structure in c language?
Why doesn't C support function overloading?
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
What is data types?
How do you construct an increment statement or decrement statement in C?
What is c++ used for today?
What is an operator?
What is the difference between procedural and declarative language?
Is there any data type in c with variable size?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Explain what is wrong with this program statement?
What are the characteristics of arrays in c?