Computer Science, asked by TbiaSamishta, 11 months ago

Complete the following program and find the output?
main()
{int a;
for(a = O; a<10;a++)
};

Answers

Answered by Vk4824
0

\* i am doing this program completed in C Language.*\

#include<stdio.h>

#include<conio.h>

void main()

{

int a;

clrscr();

for(a=0;a<10;a++)

{

printf("\t %d",&a);

}

getch();

its Output is:

0 1 2 3 4 5 6 7 8 9

Similar questions