Hi All ,
please find the Interview questions.
C-Interview questions
please find the Interview questions.
C-Interview questions
1. Difference between arrays
and pointers?
2. What is the purpose of
realloc( )?
3. What is static memory
allocation and dynamic memory allocation?
4. How are pointer variables
initialized?
5. Are pointers integers?
6. What is a pointer
variable?
7. What is a pointer value
and address?
8. What is a method?
9. What are the advantages
of the functions?
10.
What is the purpose of main( ) function?
11.
What is an argument? differentiate between formal
arguments and actual arguments?
12.
What is a function and built-in function?
13.
What is modular programming?
14.
When does the compiler not implicitly generate the
address of the first element of an array?
15.
What are the characteristics of arrays in C?
16.
Differentiate between a linker and linkage?
17.
What are advantages and disadvantages of external storage
class?
18.
Diffenentiate between an internal static and external
static variable?
19.
What are the advantages of auto variables?
20.
What is storage class and what are storage variable?
21.
Which expression always return true? Which always return
false?
22.
Write the equivalent expression for x%8?
23.
Why n++ executes faster than n+1?
24.
What is a modulus operator? What are the restrictions of
a modulus operator?
25.
What is the difference between a string and an array?
26.
Is it better to use a pointer to navigate an array of
values,or is it better to use a subscripted array name?
27.
Can the sizeof operator be used to tell the size of an
array passed to a function?
28.
Is using exit() the same as using return?
29.
Is it possible to execute code even after the program
exits the main() function?
30.
What is a static function?
31.
Why should I prototype a function?
32.
How do you print an address?
33.
Can math operations be performed on a void pointer?
34.
How can you determine the size of an allocated portion of
memory?
35.
What is a “null pointer assignment” error? What are bus
errors, memory faults, and core dumps?
36.
What is the difference between NULL and NUL?
37.
What is the heap?
38.
Can the size of an array be declared at runtime?
39.
What is the stack?
40.
When should a far pointer be used?
41.
What is the difference between far and near?
42.
Is it better to use malloc() or calloc()?
43.
Why should we assign NULL to the elements (pointer) after
freeing them?
44.
When would you use a pointer to a function?
45.
How do you use a pointer to a function?
46.
Can you add pointers together? Why would you?
47.
What does it mean when a pointer is used in an if
statement?
48.
Is NULL always defined as 0?
49.
What is a void pointer?
50.
What is a null pointer?
51.
How many levels of pointers can you have?
52.
What is indirection?
53.
How do you print only part of a string?
54.
How can I convert a string to a number?
55.
How can I convert a number to a string?
56.
What is the difference between a string copy (strcpy) and
a memory copy (memcpy)? When should each be used?
57.
How can you check to see whether a symbol is defined?
58.
How do you override a defined macro?
59.
What is #line used for?
60.
What is a pragma?
61.
What are the standard predefined macros?
62.
How can type-insensitive macros be created?
63.
How many levels deep can include files be nested?
64.
Can include files be nested?
65.
Can you define which header file to include at compile
time?
66.
What is the difference between #include and #include
“file”?
67.
Is it better to use a macro or a function?
68.
How are portions of a program disabled in demo versions?
69.
What is the benefit of using an enum rather than a #define
constant?
70.
What is the benefit of using #define to declare a
constant?
71.
Can a file other than a .h file be included with
#include?
72.
How can you avoid including a header more than once?
73.
What will the preprocessor do for a program?
74.
What is a macro, and how do you use it?
75.
What is Preprocessor?
76.
How can I make sure that my program is the only one
accessing a file?
77.
How can I open a file so that other programs can update
it at the same time?
78.
How do you determine whether to use a stream function or
a low-level function?
79.
What is the difference between text and binary modes?
80.
How can you restore a redirected standard stream?
81.
How do you redirect a standard stream?
82.
How can I search for data in a linked list?
83.
How can I sort a linked list?
84.
What is hashing?
85.
What is the quickest searching method to use?
86.
What is the easiest searching method to use?
87.
How can I sort things that are too large to bring into
memory?
88.
What is the quickest sorting method to use?
89.
What is the easiest sorting method to use?
90.
What is the benefit of using const for declaring
constants?
91.
Can static variables be declared in a header file?
92.
What is the difference between declaring a variable and
defining a variable?
93.
Is it acceptable to declare/define a variable in a C
header?
94.
When should a type cast not be used?
95.
When should a type cast be used?
96.
How can you determine the maximum value that a numeric
variable can hold?
97.
How reliable are floating-point comparisons?
98.
Can a variable be both const and volatile?
99.
When should the volatile modifier be used?
100.
When should the register modifier be used? Does it really
help?