what are the interview question's in the language c

Answers were Sorted based on User's Feedback



what are the interview question's in the language c..

Answer / 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

what are the interview question's in the language c..

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

Post New Answer

More C Interview Questions

What is merge sort in c?

0 Answers  


What is data structure in c and its types?

0 Answers  


how we can say java is platform independent, while we require JVM for that particular Operating System?

3 Answers   Honeywell, TCS,


when user give a number it multiply with 9 without useing '+' and '*' oprator

4 Answers  


Write a pro-gramme to determine whether the number is even or odd?

1 Answers  






How to set a variable in the environment list?

1 Answers  


What is quick sort in c?

0 Answers  


1 1 12 21 123 321 12344231 how i creat it with for loop??

1 Answers  


why i join syntel?

23 Answers   ABC, Syntel, TCS,


Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A

1 Answers  


main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }

2 Answers   Vector, Vector India,


#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }

9 Answers   TCS,


Categories