My issue
My code
#include <stdio.h>
int main()
{
int n=6;
printf("%d", &n);
printf("%d", &n);
return 0;
}
Learning course: C for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone
#include <stdio.h>
int main()
{
int n=6;
printf("%d", &n);
printf("%d", &n);
return 0;
}
Learning course: C for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone
include <stdio.h>
int main()
{
int n=6;
scanf(ā%dā, &n); // First we input the number which is done by scanf
printf(ā%dā, &n); // Then we display the number
return 0;
}
Hope your issue is solved