My issue
Hi, i don’t get how the code gives 6 as output for the defined integer n.
There is nowhere in the code defined that n=6 ?
My code
//update the _ in the code
#include <stdio.h>
int main() {
int n;
scanf("%d", &n );
printf("%d", n );
return 0;
}
Learning course: C for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone