Sorry! Posting Assignment is allowed only for commercial accounts.
#include stdio.hint main() {int a = 3, b = 5;int t = a;a = b;b = t;printf("%d %d", a, b);return 0;}
#includestdio.h int main() { int y=128; const int x=y; printf("%d\n", x); return 0; }