My issue
My code
#include <stdio.h>
int main() {
printf("%d", 3 + 4);
printf("%d", 2 + 1);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone
#include <stdio.h>
int main() {
printf("%d", 3 + 4);
printf("%d", 2 + 1);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone
Look like your code is write can you tell me more about your issue. Because after seeing your code I think this code is right. It will print 7 3 in a single line.