1
GATE CSE 2026 Set 2
MCQ (Single Correct Answer)
+1
-0

$$\text { Consider the following three ANSI-C programs, P1, P2 and P3 }$$

GATE CSE 2026 Set 2 Programming Languages - Basic of Programming Language Question 2 EnglishWhich one of the following statements is true?

A

Only P1 will compile without any error

B

Only P2 will compile without any error

C

Only P3 will compile without any error

D

All three programs P1, P2, and P3 will compile without any error

2
GATE CSE 2026 Set 1
Numerical
+1
-0
Consider the following program in C:

#include <stdio.h>

void func(int i, int j) {

    if(i < j) {

        int i = 0;

        while (i < 10) {

            j += 2;

            i++;

        }

    }

    printf("%d", i);

}

int main() {

    int i = 9, j = 10;

    func(i, j);

    return 0;

}

The output of the program is $\_\_\_\_$ . (answer in integer)

Note: Assume that the program compiles and runs successfully.

Your input ____
3
GATE CSE 2025 Set 2
Numerical
+1
-0
int x = 126, y = 105;
do{
   if(x > y) x = x - y;
   else y = y - x;
}while(x!=y);
printf('%d", x);

The output of the given C code segment is __________. (Answer in integer)

Your input ____
4
GATE CSE 2025 Set 1
Numerical
+1
-0
 #include < stdio.h>
void foo(int *p, int x) {
    *p = x;
}
int main( ) {
    int *z;
    int a = 20, b=25;
    z = &a;
    foo(z, b);
    printf("%d", a);
    return 0;
}

The output of the given C program is _________. (Answer in integer)

Your input ____

GATE CSE Subjects

Browse all chapters by subject

Software Engineering
Web Technologies