0% found this document useful (0 votes)
10 views1 page

C Program for Summing Integers

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)
10 views1 page

C Program for Summing Integers

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

1 #include<stdio.

h>
2 #include"detailsHeader.h"
3
4 void sum(int a,int b,int c){
5 static int totalSum = 10;
6 int sum = a+b+c;
7 totalSum = totalSum+sum;
8 printf("Total sum: %d\n",totalSum);
9 }
10 int main(){
11 auto int a = 10;
12 register int b =20;
13 register int c = 40;
14 sum(a,b,c);
15 sum(a,b,c);
16 printf("%d",studentPercentage);
17 return 0;
18 }
19

You might also like