My issue
why i am getting output 100 instade of 123
My code
//Update the blanks below to solve the problem
#include <stdio.h>
int main() {
int a, b, c;
scanf("%d", &a , &b , &c );
printf("%d %d %d",a, b, c);
return 0;
}
Learning course: C for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone