Company: Qualcomm_8thaug

Difficulty: medium

Problem Statement

What will be the output of the program given below? #include <stdio.h> int main() { int *j; void fun(int **); fun(&j); return 0; } void fun(int **k) { int a = 100 * 1000 + 100 / 5; printf("%d", *k = a); } 100020 200200 102100 100005

More Qualcomm_8thaug OA questionsInterview experiences