Answer Posted / shrikantauti
it means function.
it may be user defined or system defined.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
explain how do you use macro?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
How can I invoke another program or command and trap its output?
What are linked lists in c?
Is using exit() the same as using return?
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 []);
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What happens if header file is included twice?
What do you mean by recursion in c?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Explain About fork()?
What do you mean by dynamic memory allocation in c?
What is methods in c?
What is your stream meaning?