Ca some one please help me with aC code to allow user enter
numbers from 1 to 20 without repeating and prnt the sum of
those numbers
thnx
Answer Posted / kaiss
we will use looping for making this program.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is non linear data structure in c?
What is static volatile in c?
What are the advantages of using macro in c language?
What is the purpose of & in scanf?
about c language
how could explain about job profile
i want to know the procedure of qualcomm for getting a job through offcampus
What is meant by int main ()?
What is c programing language?
What is clrscr ()?
How do I get a null pointer in my programs?
If errno contains a nonzero number, is there an error?
What are structures and unions? State differencves between them.
Why is c called c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }