main()
{int a=200*200/100;
printf("%d",a);
}
Answer Posted / jaga
a=200*200
=40000/100
=400
a=400
| Is This Answer Correct ? | 7 Yes | 16 No |
Post New Answer View All Answers
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What are header files and what are its uses in C programming?
What is keyword in c?
What is the translation phases used in c language?
What does != Mean in c?
Are negative numbers true in c?
How is actual parameter different from the formal parameter?
What is the right type to use for boolean values in c? Is there a standard type?
Why calloc is better than malloc?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Explain how can you check to see whether a symbol is defined?
Explain modulus operator. What are the restrictions of a modulus operator?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What is c preprocessor mean?