M
Q. What will be the output of the following code snippet?
#include <stdio.h> void solve() { int a[] = {1, 2, 3, 4, 5}; int sum = 0; for(int i = 0; i < 5; i++) { if(i % 2 == 0) { sum += *(a + i); } else { sum -= *(a + i); } } printf("%d", sum); } int main() { solve(); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which of the following are syntactically correct in C language
Q. Forward declaration is absolutely necessary
Q. Which data type is suitable for storing a number like? 25.00002500025
Q. What is the Priority of C Logical Operators.? NOT (!), AND (&&) and OR (||)
Q. Which of the following function is used for sets the position to the beginning of the file
Q. What is the value of EOF in C?
Q. The function tolower() defined in the C library works for ___?
Q. Which of the following is an invalid if-else statement?
Q. What will be output if you will compile and execute the following c code?
Discusssion
Login to discuss.