2
Answers

temp code that im struggling with

sami sam

sami sam

12y
911
1
#include <stdio.h>
 int i.j,temp;
 int main () {
i=3;
j=5;
temp = i;
i = j;
j = i;
printf("i=%d j=%d\n",i,j);
printf("%d %d\n",i,j);
 }

where i am went wrong.
Answers (2)