#include <stdio.h>  
#defi

Loading

โœช Choose the correct option.

#include   
#define SWAP(a, b, c) c t; t=a, a=b, b=t;
int main() {
int x=10, y=20;
SWAP(x, y, int);
printf("%d %d ", x, y);
return 0;
}

A. It compiles and prints swapped values of x and y.
B. Compiles with an warning
C. Not compile
D. Compiles and print nothing

Leave a Comment