My issue
please solve this problem
My code
#include <stdio.h>
int main() {
// add %d along with \n to print on two different lines
print("the sum of 3 and 4 is:%d\n",3 + 4);
printf("the sum of 1 and 2 is:%d\n", 1 + 2);
return 0;
}
Learning course: Programming and Problem solving using C
Problem Link: https://www.codechef.com/learn/course/ciet-programming-c/CIETPC02/problems/CLB008