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
Explain the term printf() and scanf() used in c language?
what is the difference between class and unio?
What is sorting in c plus plus?
Explain what is a static function?
Please write the area of a RIGHT ANGLED TRIANGLE.
Can u return two values using return keyword? If yes, how? If no, why?
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
When would you use a pointer to a function?
When is a null pointer used?
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
What is array of structure in c programming?