Define function ?Explain about arguments?
Answers were Sorted based on User's Feedback
Answer / cguru
A function is a procedure to solve a given task.
Arguments are parameters which are specified in the function
header.
| Is This Answer Correct ? | 12 Yes | 3 No |
Answer / 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 |
What is pass by value in c?
Explain the use of keyword 'register' with respect to variables.
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
wat are the two methods for swapping two numbers without using temp variable??
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
What are the 4 data types?
Can you assign a different address to an array tag?
how to build a exercise findig min number of e heap with list imlemented?
how to swap four numbers without using fifth variable?