Sorry! Posting Assignment is allowed only for commercial accounts.
#include <stdio.h>int main() { int a = 3, b = 5; int t = a; a = b; b = t; printf("%d %d", a, b); return 0;}