If the input of the following program is 10, what will be the output? void print(int); void main() { int n; scanf(%d,&n); print(n); } void print(static int x) { int i; for(i=1;i<=x;i++) printf(%d,i); }
Reveal answer
Fill a bubble to check yourself