What are nested functions in c?


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

Post New Answer

More C Interview Questions

Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.

0 Answers   IBM,


What character terminates all strings composed of character arrays? 1) 0 2) . 3) END

3 Answers  


which type of aspect you want from the student.

0 Answers   IBM, TCS,


What is the purpose of main( ) in c language?

0 Answers  


Explain high-order bytes.

0 Answers  






difference between Low, Middle, High Level languages in c ?

0 Answers   Bosch, Infosys,


What are the restrictions of a modulus operator?

0 Answers  


what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }

3 Answers   Honeywell,


Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?

3 Answers   HCL, TCS,


Explain how do you list a file’s date and time?

0 Answers  


How macro execution is faster than function ?

0 Answers   Wipro,


typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none

0 Answers  


Categories