sami sam

sami sam

  • NA
  • 40
  • 29.4k

temp code that im struggling with

Aug 7 2012 9:49 PM
#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)