Learning and Teaching Coding

Hello Guys!!! Let's check your knowledge in C language

What will the output of below code??

#include <stdio.h>
#include <conio.h>

void main() {
int a = 3, b = 5;
int t = a;
a = b;
b = t;
printf("%d %d", a, b);
getch();


}

1 year ago | [YT] | 4