Skip to main content
Search
Search This Blog
Welcome coders
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
January 30, 2022
8.(C) Basics of for loop
#include
<stdio.h>
int
main
()
{
for
(
int
a
=
0
;
a
<
10
;
a
++)
{
printf
(
"The value of a is
%d
\n
"
,
a
);
}
return
0
;
}
Comments
Popular Posts
February 15, 2022
29.(C)Pascal triangle --->>>Finding the sum of any row of pascal triangle
February 15, 2022
34.(C) Codeforces 791 A--->>>Bear and big brother
Comments
Post a Comment