My issue
i want expianation in c programming language
My code
#include <stdio.h>
int main(void) {
// your code goes here
return 0;
}
Problem Link: START01 Problem - CodeChef
i want expianation in c programming language
#include <stdio.h>
int main(void) {
// your code goes here
return 0;
}
Problem Link: START01 Problem - CodeChef
include <stdio.h>
int main(void) {
int n;
scanf(ā%dā,&n);//this line accepts values from the user
printf(ā%d\nā,n);//this line displays the output to the user
return 0;
}
Problem Link: https://www.codechef.com/problems/START01
[/quote]