100% పాయిoటర్స్ ఉపయోగించి మొదటి కొన్ని సహజసంఖ్యలను కూడితే ఎంత వస్తుందో కనుక్కోవటం
//C prog to find sum of first n natural numbers
#include <stdio.h>
int adding(int *b, int n)
{
int i, *ptr, tatkAl=0;
ptr=b;
for(i=0;i<n;i++)
tatkAl=*(ptr+i)+tatkAl;
printf("\n sum of elements as printed in function =%d",tatkAl);
return(tatkAl);
}
void main()
{
int a[9],i,n,total;
printf("\n enter number from 1 to 9:");
scanf("%d",&n);
for(i=0;i<n;i++)
a[i]=i+1;
total=adding(&a[0], n);
printf("\n sum of elements as printed in main =%d",total);
}// end of main
#include <stdio.h>
int adding(int *b, int n)
{
int i, *ptr, tatkAl=0;
ptr=b;
for(i=0;i<n;i++)
tatkAl=*(ptr+i)+tatkAl;
printf("\n sum of elements as printed in function =%d",tatkAl);
return(tatkAl);
}
void main()
{
int a[9],i,n,total;
printf("\n enter number from 1 to 9:");
scanf("%d",&n);
for(i=0;i<n;i++)
a[i]=i+1;
total=adding(&a[0], n);
printf("\n sum of elements as printed in main =%d",total);
}// end of main
ఔట్పుట్ తెరమీద
enter number from 1 to 9:4
sum of elements as printed in function =10
sum of elements as printed in main =10
sum of elements as printed in function =10
sum of elements as printed in main =10
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.