Skip to main content
Search
Search This Blog
Welcome coders
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
January 30, 2022
6.(C) Basics of Do-While loop
#include
<stdio.h>
int
main
(){
int
i
=
0
;
do
{
printf
(
"The value of i is
%d
\n
"
,
i
);
i
++;
}
while
(
i
<
10
);
return
0
;
}
Comments
Popular Posts
February 15, 2022
29.(C)Pascal triangle --->>>Finding the sum of any row of pascal triangle
November 02, 2023
Codechefs starters 106->div 3 : B-> Playing with OR
Comments
Post a Comment