C FAQs: Questions and Answers
Advertisement
This page covers frequently asked C questions and answers. These FAQs are useful for interviews and viva examinations.
Here’s a list of the top 10 C FAQs:
-
Explain the scope of a static variable with an example.
-
What’s the difference between the operators
n++
and++n
? -
Explain the difference between a structure and a union with an example.
-
Can more variables be passed to the
main
function? If so, how? -
Explain the difference between pass by value and pass by reference.
-
What is the difference between
malloc
andcalloc
functions in C? -
Declare and define a double-dimensional array. Write the same with the use of pointers.
-
Write a program to determine if an entered number is prime or not.
-
Write a program to swap two numbers without using a third variable.
-
What is a volatile variable, and how is it different from a normal C variable?