Question
#include <stdio.h>
int main()
{
int a = 4, n, i, result = 0;
scanf("%d", n);
for (i = 0;i < n; i++)
result += a;
}
a.
Addition of a and n
b.
Subtraction of a and n
c.
Multiplication of a and n
d.
Division of a and n
Posted under C Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of this C code? #include <stdio.h> int main() { int a = 4, n, i, result = 0; scanf("%d", n); for (i = 0;i < n; i++)...
Similar Questions
Discover Related MCQs
Q. Which of the following is an invalid assignment operator?
View solution
Q. For initialization a = 2, c = 1 the value of a and c after this code will be
c = (c) ? a = 0 : 2;
View solution
Q. What will be the data type of the expression
(a < 50) ? var1 : var2;
provided a = int, var1 = double, var2 = float
View solution
Q. Which expression has to be present in the following?
exp1 ? exp2 : exp3;
View solution
Q. Value of c after the following expression (initialization a = 1, b = 2, c = 1):
c += (-c) ? a : b;
View solution
Q. Comment on the following expression?
c = (n) ? a : b; can be rewritten as
View solution
Q. In expression i = g() + f(), first function called depends on
View solution
Q. Which of the following operators has an associativity from Right to Left?
View solution
Q. Which operators of the following have same precedence?
P. "!=", Q. "+=", R. "<<="
View solution
Q. Comment on the following statement?
n = 1;
printf("%d, %dn", 3*n, n++);
View solution
Q. Which of the following option is the correct representation of the following code?
e = a * b + c / d * f;
View solution
Q. What care must be taken during swapping 2 numbers?
b = (b / a);
a = a * b;
b = a / b;
View solution
Q. Which of the following is the correct order of evaluation for the given expression?
a = w % x / y * z;
View solution
Q. Which function in the following expression will be called first?
a = func3(6) - func2(4, 5) / func1(1, 2, 3);
View solution
Q. Which of the following operator has the highest precedence in the following?
View solution
Q. Which of the following is a ternary operator?
View solution
Q. Which of the following are unary operators?
View solution
Q. Where in C the order of precedence of operators do not exist?
View solution
Q. Associativity of an operator are:
View solution
Q. Which of the following method are accepted for assignment?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!