My issue
scan do not changing
Learning course: Practice C
Problem Link: Rearrange Code Practice Problem in C - CodeChef
scan do not changing
Learning course: Practice C
Problem Link: Rearrange Code Practice Problem in C - CodeChef
what I rearranged is showing wrong here
@divya275
this will be the correct rearrangement
#include <stdio.h>
int main() {
int a,b,c;
scanf("%d", &a);
scanf("%d", &b);
c = a + b;
printf("%d", c);
return 0;
}