2College4Knowledge
Home
Interview Questions
Group Discussion Topics
Quiz Questions
Aptitude
Free Aptitude Tests
Cookie usage
Contact Us
Interview Questions on C|C programming Interview Questions
Page Contents of Interview Questions on C
Preparation for Interview Questions on C
Interview Questions on C basic concepts
Interview Questions on C fundamentals and Objective questions
Other exiting content in our website
Aptitude Questions
Group Discussion Topics
Questions on JAVA
Questions on Database
Free Aptitude Tests
Increase Calculation speed
You are currently reading
C OBJECTIVE INTERVIEW QUESTIONS 1
similar content
C programming Interview Questions-1
C programming Interview Questions-2
C programming Interview Questions-3
Q1 . What is the use of constant Keyword in C?
Check Answer
SOLUTION
The const in C is a type qualifier
They are used to define constant variables whose values cannot be modified
Example- const int a=5
Q2 . What are the storage classes in C?
Check Answer
SOLUTION
The storage classes are the ones that decide the type of variables like the scope etc.Some of the storage classes are
>Static
>External
>Register
Q3 . What are Bitwise operators in C?
Check Answer
SOLUTION
Bitwise oerators are the ones that act on the operands at bit level.
Some examples are Bitwise AND,OR.
Bitwise AND would be 1 AND 1 would be 1
1 AND 0 would be 0
Q4 . What is ternary operators in C?
Check Answer
SOLUTION
?: is a ternary operator.It is a conditional operator.
K?A:B
when the condition K is true the output would be A else it will be B.
Q5 . What is the precendence of arithmatic operators in C?
Check Answer
SOLUTION
The precedance of operators from left to right is
*/+ -
Q6 . What is an infinite loop?
Check Answer
SOLUTION
It is a loop that does not terminate ; For example
i=1;while (i>0){i++;}
for(;;)
Q7 . What are the intial default values of various data types?
Check Answer
SOLUTION
Whenver the variables are intialised in C they have some default values .Like char has
float has 0
integer has 0
Q8 . What is preprocessor?
Check Answer
SOLUTION
The preprocessor in C help in inclusion of header files macros etc.
some header files are
some preprocessor are #include,#define
Q9 . what is the precedence of local and global variables?
Check Answer
SOLUTION
In a flow of a program a local variable has precedence over global variables if both of them coexist in the same scope.
Q10 . What are pointers in C?
Check Answer
SOLUTION
Pointers are variables that contain the address of other variables. Example of pointer int *p; p=&x;
now p has the address of X
You are Currently reading
C Interview Questions-1
for more Interview Questions on C
C Interview Questions-1
C Interview Questions-2
C Interview Questions-3
Check out our other content
Technical Interview Questions
Objective Interview Questions on C Programming
Objective Interview Questions on Computer Networks
Objective Interview Questions on C++ Programming
Objective Interview Questions on Database Management Systems
Objective Interview Questions on Java Programming
Objective Interview Questions on Operating Systems
Objective Interview Questions on Unix Shell
Objective Interview Questions on Web Technology
Free Aptitude Questions
Aptitude Questions on Ages
Aptitude Questions on Averages
Aptitude Questions on Boats and Streams
Aptitude Questions on Partnership
Aptitude Questions on Profit and Loss
Aptitude Questions on Time and Work
Aptitude Questions on Time Speed and Distance
Aptitude Questions on Trains
Free Aptitude Tests
Aptitude Test on Ages
Aptitude Test on Averages
Aptitude Test on Boats and Streams
Aptitude Test on Partnership
Aptitude Test on Profit and Loss
Aptitude Test on Time and Work
Aptitude Test on Time Speed and Distance
Aptitude Test on Trains
Group Discussion Topics
Group discussion points on demonetization
Group discussion points on digitalization
Group discussion points on educational system in india
Group discussion points on effects of peer pressure in life
Group discussion points on flexible work culture flexible time and place
Group discussion points on globalization leading to global warming
Group discussion points on jingoism effects on globalization
Group discussion points on obesity and health impact
Free Quiz Questions
Question General Knowledge