why arguments can generally be passed to functions

a) sending the values of the arguments

b) sending the addresses of the arguments

c) a & b

d) none of the above


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }

3 Answers  


write a program to display the numbers having digit 9 in the given range from 1 to 100

1 Answers  


An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode

0 Answers  


convert 12345 to 54321 withoutusing strig

5 Answers  


Predict the output or error(s) for the following: 25. main() { printf("%p",main); }

3 Answers   Google, ME,


What is the difference between File pointer and Internal Charecter Pointer?

2 Answers   TATA,


how to print a statement in c without use of console statement ,with the help of if statement it should print

2 Answers   Satyam,


write a program to swap bits in a character and return the value prototype of function char fun (char a, charb flag c) where fun returns a char, char a is a the value char b is the bit to be changed and flag c is the bit value for eg: x=fun(45,7,0) since 45 is 0010 0101 and ow x should contain the value 65 (0110 0101)

1 Answers   Bosch, College School Exams Tests,


with out using main how to execute the program?

2 Answers  


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......

10 Answers   Infosys,


enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program

1 Answers  


Categories