what are the interview question's in the language c
Answer Posted / shruti_kamthe
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 |
Post New Answer View All Answers
What are types of functions?
What does emoji p mean?
Explain the difference between malloc() and calloc() function?
What are examples of structures?
What are global variables and how do you declare them?
how to make a scientific calculater ?
Can one function call another?
If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.
What does the format %10.2 mean when included in a printf statement?
What are data structures in c and how to use them?
What is the use of a static variable in c?
What is operator promotion?
What is self-referential structure in c programming?
What is the use of getch ()?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }