Skip to main content
Search
Search This Blog
Welcome coders
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
January 30, 2022
3.(C) Loop-->>>Example of While loop
#include
<stdio.h>
int
main
()
{
int
a
;
scanf
(
"
%d
"
, &
a
);
//while (a<10)
while
(
a
>
10
)
{
printf
(
"
%d
\n
"
,
a
);
a
++;
}
return
0
;
}
Comments
Popular Posts
November 02, 2023
Codechefs starters 106->div 3 : B-> Playing with OR
October 26, 2023
Codeforces-> 1490C - Sum of Cubes
Comments
Post a Comment