Guess the output.
#include <stdio.h>
void main()
{
    int i = 0;
    while (i < 7)
    {
        i++;
        printf("Avatar\n");
        while (i < 10) 
        {
            i++;
            printf("Avatar2\n");
        }
    }
}


Posted on by