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

ఔట్పుట్ తెరమీద
enter number from 1 to 9:4
sum of elements as printed in function =10
 sum of elements as printed in main =10

కామెంట్‌లు

ఈ బ్లాగ్ నుండి ప్రసిద్ధ పోస్ట్‌లు

100% C prog to write content into a file and then read it back onto the console

Spic macay

శ్రీరస్తు.. రామలింగ 18-1-24 (సూరసాని వారి ఆహ్వానము)