Answer Posted / bavi
No.Oly cal by value method of passing is used in C.
Also, calling by reference can be achieved thru' Pointers.
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
In c language can we compile a program without main() function?
What happens if a header file is included twice?
What is calloc in c?
What is the difference between far and near ?
How can you find the day of the week given the date?
What does *p++ do?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What is a char in c?
What is the use of a semicolon (;) at the end of every program statement?
What do the functions atoi(), itoa() and gcvt() do?
Can include files be nested? How many levels deep can include files be nested?
What is getch c?
What are valid signatures for the Main function?
Explain the array representation of a binary tree in C.