Interpret the following program segment.
#include<stdio.h>
int main()
{
int i=1;
while(i<=10)
{
printf("My first ");
printf("c program \n");
i=i++;
}
return 0;
}
 Viewed: 498 times For Better experience and learning,for video answers, after video ends playing, click next question in the questions list!!!