1. Write a function to display the sum of two numbers in the following ways:
By using (i) pass by value (ii) pass by address
a. function with argument and with return value
b. function with argument and without return value
c. without argument , with return value
d. without argument , without return value
Note: Use pass by address.
No Answer is Posted For this Question
Be the First to Post Answer
Which type of language is c?
Explain what is meant by high-order and low-order bytes?
Can we use visual studio for c?
i need all types of question paper releted to "c" and other language.
print a "hello" word without using printf n puts in c language
How can I swap two values without using a temporary?
i got 75% in all semester am i eligible for your company
Tell me with an example the self-referential structure?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
Explain how can you tell whether a program was compiled using c versus c++?
main() { int a,b; printf("%d,%d",scanf("%d%d",&a,&b)); } => do u mean above program's output... =>output will be:2,whatever you enter value for b. =>because scanf is a library fn which will return how many arguements it processes, and second value you are right mr.Satya but i found my self unable to understand that for the first time scanf returns the no of successful matches but how for the second time it returns the value of 'b'.while a function should return the same 'r' value every time.