fork download
  1. #include<stdio.h>
  2. void prime(int a)
  3. {
  4. int i,j,sum=0,count=0;
  5. for(i=2;i<=a;i++)
  6. {
  7.  
  8. for(j=1;j<=i;j++)
  9. {
  10. if(i%j==0)
  11. {
  12. count++;
  13. }
  14. if(count==2)
  15. {
  16. printf("%d",i);
  17. sum=sum+i;
  18. }
  19.  
  20.  
  21. }
  22. }
  23. printf("sum of prime=%d",sum);
  24. }
  25. int main()
  26. {
  27. int x;
  28. void prime(int);
  29.  
  30. printf("enter the numbers\n");
  31. scanf("%d",&x);
  32. printf("sum of prime=%d");
  33.  
  34.  
  35.  
  36.  
  37. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
enter the numbers
sum of prime=482825616