December 7, 2023GATE 2021 CS-Set-2Question 16 Consider the following ANSI C program. #include <stdio.h> int foo(intx, int y, int q) { if ((x <= 0) && (y <= 0)) return […]
December 7, 2023Question 14281 – GATE 2021 CS-Set-2Consider the following ANSI C program. #include <stdio.h> int foo(intx, int y, int q) { if ((x <= 0) && (y <= 0)) return q; if […]
December 7, 2023STQC-NIELIT SC-B 2021Question 6 Rakesh is standing at a point. He walks 20 m towards the East and further 10m towards the South, then he walks 35m towards […]
December 8, 2023Question 7951 – ProgrammingThe output of executing the following C program is __________. #include<stdio.h> int total (int v) { static int count=0; while(v) { count += v&1; v ≫= […]