My issue
what is console here
My code
#include <stdio.h>
int main(void) {
//printf("%d\n%d",9*2,30/5);
printf("%d",9*2);
printf("%d",30/5);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone
what is console here
#include <stdio.h>
int main(void) {
//printf("%d\n%d",9*2,30/5);
printf("%d",9*2);
printf("%d",30/5);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone
include <stdio.h>
int main(void) {
// your code goes here
printf(ā%d\nā,9-2);
printf(ā%dā,30/5);
return 0;
}