My issue
My code
#include <stdio.h>
int main(void) {
// your code goes here
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone
#include <stdio.h>
int main(void) {
// your code goes here
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone
@memyselfharsh
U have to do it like this.
#include <stdio.h>
int main() {
printf("%d\n%d", 8*9, 2*(100+200));
return 0;
}
@memyselfharsh you need to print the product of the integers 8 & 9 .
and sum of 100 & 200 multiplied by 2… and both results print in separate lines…
include <stdio.h>
int main(void) {
printf(“%d\n”,8*9);
printf(“%d”,(100+200)*2);
}