what are the interview question's in the language c
Answers were Sorted based on User's Feedback
Interview questions in C would be :
- what are pointers?
- what do the .h files mean?
my fav ques - which i will always ask is :
** what is the differance between a[0] and *a.
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / mallik
a[0] represents only that value at 0 location,but *a
represents the address of that variable stored
Is This Answer Correct ? | 0 Yes | 0 No |
What is the use of void pointer and null pointer in c language?
What is the difference between c and python?
What is calloc()?
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n
What are linked lists in c?
What is c language used for?
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
what is the function of pragma directive in c?
how to determine the complexity of an algorithm as log(n)
What are the advantages of the functions?
Differentiate between Macro and ordinary definition.
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?