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 / douglas
I so far have nothing
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
Explain the difference between call by value and call by reference in c language?
What is a buffer in c?
What is struct node in c?
What are the two forms of #include directive?
What is the purpose of 'register' keyword?
Write a program to use switch statement.
Why we not create function inside function.
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Linked lists -- can you tell me how to check whether a linked list is circular?
Can include files be nested?
What is the use of header?
Explain heap and queue.
When should we use pointers in a c program?
When should you not use a type cast?