Write the program that calculates and prints the average of
several integers. Assume that the last value read is
sentinel 9999.
No Answer is Posted For this Question
Be the First to Post Answer
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
second highest number in a given set of numbers
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation
If input is 123 then how to print 100 and 20 and 3 seperately?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
how to find the kth smallest element in the given list of array elemnts.
Can static variables be declared in a header file?
Explain enumerated types in c language?
what does ‘#include’ mean?
Is c procedural or functional?
What is int main () in c?