Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
int main()
{
    int a = 1, b = 2;
    a += b -= a;
    printf("%d %d", a, b);
}

A. 1 1

B. 1 2

C. 2 1

D. 2 2

Answer: Option C


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals