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. An _______ is a fixed size sequence collection of elements of the same data type
Q. A function fun is called __________ if it calls the same function fun.
Q. What is the ASCII value of NULL or \0?
Q. What will be output for the following code?
Q. What is the output of C program with arrays?
Q. An array elements are always stored in _________ memory locations.
Q. Far pointer can access ____
Q. What is the default return type if it is not specified in function definition?
Q. What is the output of C program?
Q. Which character(s) is/are used to open a binary file in reading and writing mode in C?
Discusssion
Login to discuss.