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