0
input an integer n and show output all integers upto n,using functional c program
just show me the functional logic...
3 odpowiedzi
+ 7
int n;
scanf("%d", &n);
for (int i = 0; i <= n; i++)
{
printf("%d ", i);
}
0
anyone solve plz
0
I need functional solution....for loop in functions...