Define function ?Explain about arguments?
Answer Posted / prashant
Function means to do something within one procedure
everything is predefine in function.
Arguments means what we want to pass while calling that
function.
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is the acronym for ansi?
Tell me when is a void pointer used?
Differentiate between null and void pointers.
What is #define?
Explain a file operation in C with an example.
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What are categories used for in c?
What is f'n in math?
Write a program to reverse a given number in c?
What is the 'named constructor idiom'?
Write a program to swap two numbers without using the third variable?
Is it possible to pass an entire structure to functions?
Which built-in library function can be used to match a patter from the string?
What is #pragma statements?