Distinguish between actual and formal arguments.


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

Post New Answer

More C Interview Questions

write a method for an array in which it can display the largest n next largest value.

1 Answers   Value Labs,


main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }

11 Answers   CISOC, CitiGroup, College School Exams Tests,


write a program to print %d ?

12 Answers  


the data type used for unlimited value in c and how to do this program

1 Answers  


Explain low-order bytes.

0 Answers  






Find greatest of two numbers using macro

4 Answers   Bosch, Siemens,


How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?

1 Answers  


send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?

0 Answers   TCS,


write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.

0 Answers  


9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?

4 Answers   L&T,


what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }

1 Answers   Google,


enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?

4 Answers   TCS,


Categories