What will the output of the following "C" code?
#includestdio.h  
int main(){
int i=1,num=0;
printf("Enter a num: ");
scanf("%d",&num);
for(i=1;i=10;i++){
printf("%d \n",(num*i));
}
return 0;
}


Posted on by