Answer Posted / shireesha
It invokes the other functions defined in the program.
It provides the starting address for the funtion.
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
Explain logical errors? Compare with syntax errors.
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Explain what are run-time errors?
Why c is called free form language?
Differentiate Source Codes from Object Codes
how can I convert a string to a number?
What is typeof in c?
p*=(++q)++*--p when p=q=1 while(q<=6)
What does malloc () calloc () realloc () free () do?
What is wrong with this statement? Myname = 'robin';
How many types of operators are there in c?
How can I discover how many arguments a function was actually called with?
Can a local variable be volatile in c?
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 []);
Why is %d used in c?