Untitled

mail@pastecode.io avatar
unknown
plain_text
7 months ago
343 B
35
Indexable
Never
% cat fixed.c|sed '\_/\*_,\_\*/_s/^/>>>/'
#include <stdio.h>
int c;
>>>/* This is a test program.
>>>   The C / *..* / operator
>>>   does not allow nesting.*/
int main()
{   scanf("%d",&c);
>>>    /* This runs for
>>>       values of c > 0*/
    if (c>0)
    {   printf("Yes\n");
        while (c>0)
        {   printf("%d\n",c--);
}   }   }