Is reference used in C?



Is reference used in C?..

Answer / 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

More C Interview Questions

What are the 4 types of organizational structures?

0 Answers  


What is the difference between %d and %*d in C

3 Answers  


In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.

0 Answers  


A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers

0 Answers  


What is 1f in c?

0 Answers  






we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?

4 Answers   HP, Wipro,


what is structuer?

4 Answers   LG Soft, Wipro,


Why cd or dvd are round why not square.

1 Answers  


What are keywords c?

0 Answers  


If we give two names then this displays the connection between the two people. It is nothing but flames game

1 Answers  


What's wrong with "char *p; *p = malloc(10);"?

5 Answers  


int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?

2 Answers  


Categories