main()
{int a=200*200/100;
printf("%d",a);
}
Answer Posted / rukmanee
int a=200*200/100;
=200*2;
=400;
the value of a=400
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
How do we open a binary file in Read/Write mode in C?
Explain how do you override a defined macro?
Explain continue keyword in c
can any one provide me the notes of data structure for ignou cs-62 paper
how to find anagram without using string functions using only loops in c programming
What is meant by operator precedence?
about c language
What is volatile variable in c?
What are the 5 organizational structures?
What is static and auto variables in c?
Is null always defined as 0(zero)?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
Which is better between malloc and calloc?
How does normalization of huge pointer works?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10