blob: b1fa315e5672076ae628ab5911858f961ab56c6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#include <stdio.h>
#include <cs50.h>
int main(void)
{
int x = 36;
for (int i = 0; i < x; i++)
{
printf("meow\n");
}
}
return 0;
}
return 0;
}
When the above code is compiled and executed, it produces the following result −
value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 15
value of a: 16
value of a: 17
value of a: 18
value of a: 19
Kickstart Your Career
Get certified by completing the course
Get Started
|