write a program that declares an array of 30 elements named "income" in the main functions.
then cal and pass the array to a programmer-defined function named "getIncome"
within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen
using the following function:
"void getIncome ( ai []);


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Can two or more operators such as and be combined in a single line of program code?

0 Answers  


What is the best way to store flag values in a program?

0 Answers  


State two uses of pointers in C?

0 Answers   Aspire, Infogain,


What is the difference between mpi and openmp?

0 Answers  


What is boolean in c?

0 Answers  


What is difference between array and structure in c?

0 Answers  


#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }

3 Answers   VB,


Why do we use static in c?

0 Answers  


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

0 Answers  


What is scanf_s in c?

0 Answers  


What Is The Difference Between Null And Void Pointer?

0 Answers   TCS,


what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }

9 Answers  


Categories