My issue
why 30 is put in place of 3
My code
//Update the _ in the IDE
#include <stdio.h>
int main() {
int N;
char S[30];
scanf("%d", &N);
scanf("%s", &S);
printf("%d ",N );
printf("%s ", S );
return 0;
}
Learning course: Logic Building in C
Problem Link: CodeChef: Practical coding for everyone