My issue
My code
#include <stdio.h>
int main() {
printf("%d", 3 + _4 );""/n"";
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 );""/n"";
printf("%d", 2 + 1);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone
@adithya43
u have to do it like this
include <stdio.h>
int main() {
printf(ā%d \nā, 3 + 4 );
printf(ā%dā, 2 + 1);
return 0;
}