✪ Choose the correct option.
#include
void
main()
{
int
i=1,j=1;
while
(++i < 10)
printf
(
"%d "
,i);
printf
(
" "
);
while
(j++ < 10)
printf
(
"%d "
,j);
}
what is the output ?
#include<stdio.h>
void<
#include
void
main()
{
int
i=1,j=1;
while
(++i < 10)
printf
(
"%d "
,i);
printf
(
" "
);
while
(j++ < 10)
printf
(
"%d "
,j);
}
what is the output ?