What is the difference function call by value & function
call by reference?
Answer Posted / nakul sharma
In Call by value we simply passes the variable to the
function but in CAll by reference we actually pass the
memory address where the variable we want to pass is stored.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is extern keyword in c?
Why is struct padding needed?
What are shell structures used for?
In C programming, what command or code can be used to determine if a number of odd or even?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is a sequential access file?
What is restrict keyword in c?
What is the difference between printf and scanf in c?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
What is the use of gets and puts?
What is the difference between Printf(..) and sprint(...) ?
Who invented bcpl language?
How can I open files mentioned on the command line, and parse option flags?