-
What will be the output of the following C code?
#include <stdio.h>
int main()
{
int p = 6, num, k, R = 0;
scanf("%d", num);
for (k = 0; k < num; k++)
R += p;
}
-
- Multiplication of p and num
- Division of p and num
- Addition of p and num
- Subtraction of p and num
- It will not print any output.
Correct Option: E
It will not print any output.