September 5, 2023ProgrammingQuestion 13 Consider the following C functions. int fun1 (int n) { int fun2 (int n) { static int i = 0; static int i = […]
September 5, 2023ProgrammingQuestion 1 Let x be an integer which can take a value of 0 or 1. The statement if(x = =0) x = 1; else x […]
September 19, 2023GATE 2023Question 4 A survey for a certain year found that 90% of pregnant women received medical care at least once before giving birth. Of these women, […]
September 21, 2023Programming-for-Output-ProblemsQuestion 4 Consider the following C program: #include <stdio.h> int main() { int a[] = {2, 4, 6, 8, 10} ; int i, sum = 0, […]