main()
{int a=200*200/100;
printf("%d",a);
}
Answer Posted / pawan singh
400
| Is This Answer Correct ? | 12 Yes | 14 No |
Post New Answer View All Answers
What is a stream?
What is return type in c?
what is uses of .net
Explain the difference between #include "..." And #include <...> In c?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Explain the use of 'auto' keyword
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Explain how can I convert a number to a string?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What is keyword in c?
What are loops c?
How do you override a defined macro?
Explain is it valid to address one element beyond the end of an array?
What is a program?
Is c compiled or interpreted?