What is the output of the following 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