0% found this document useful (0 votes)
7 views5 pages

C Program 5 Multi

List of c programs

Uploaded by

ramanji
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views5 pages

C Program 5 Multi

List of c programs

Uploaded by

ramanji
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Sample C Program 5 - Page 1

#include
int main() {
int arr[5] = {10, 20, 30, 40, 50};
int i;
for(i = 0; i < 5; i++) {
printf("%d\n", arr[i]);
}
return 0;
}

Explanation:
This page demonstrates a simple C program example. It includes the code and explanation of how
it works. Each document is extended to multiple pages for demonstration purposes.
Sample C Program 5 - Page 2
#include
int main() {
int arr[5] = {10, 20, 30, 40, 50};
int i;
for(i = 0; i < 5; i++) {
printf("%d\n", arr[i]);
}
return 0;
}

Explanation:
This page demonstrates a simple C program example. It includes the code and explanation of how
it works. Each document is extended to multiple pages for demonstration purposes.
Sample C Program 5 - Page 3
#include
int main() {
int arr[5] = {10, 20, 30, 40, 50};
int i;
for(i = 0; i < 5; i++) {
printf("%d\n", arr[i]);
}
return 0;
}

Explanation:
This page demonstrates a simple C program example. It includes the code and explanation of how
it works. Each document is extended to multiple pages for demonstration purposes.
Sample C Program 5 - Page 4
#include
int main() {
int arr[5] = {10, 20, 30, 40, 50};
int i;
for(i = 0; i < 5; i++) {
printf("%d\n", arr[i]);
}
return 0;
}

Explanation:
This page demonstrates a simple C program example. It includes the code and explanation of how
it works. Each document is extended to multiple pages for demonstration purposes.
Sample C Program 5 - Page 5
#include
int main() {
int arr[5] = {10, 20, 30, 40, 50};
int i;
for(i = 0; i < 5; i++) {
printf("%d\n", arr[i]);
}
return 0;
}

Explanation:
This page demonstrates a simple C program example. It includes the code and explanation of how
it works. Each document is extended to multiple pages for demonstration purposes.

You might also like