296 views
0 votes
0 votes
{
    int i;
    for(i=1;i<=3;i++)
    {
        fork();
        printf("*");
    }
    return 0;
}

how many times star will be printed?

1 Answer

Related questions

0 votes
0 votes
1 answer
2
0 votes
0 votes
3 answers
3