My issue
Showing wrong solution
My code
#include <stdio.h>
int main(void) {
// your code goes here
printf("%d ",3+4);
printf("%d ",2+1);
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone
Showing wrong solution
#include <stdio.h>
int main(void) {
// your code goes here
printf("%d ",3+4);
printf("%d ",2+1);
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone
You don’t need to put spaces after %d.
giving space between operand and operator (3 + 4) and (2 + 1) may give you correct solution you want