Explain what is the difference between a string and an array?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what is develop in c language

2 Answers  


long int size a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes

18 Answers   Acropolis, HCL, Intel, TCS,


Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

4 Answers   Accenture,


What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.

1 Answers  


Explain bitwise shift operators?

0 Answers  


Which built-in library function can be used to match a patter from the string?

0 Answers  


Concat two string with most overlapped substring has to remove  "abcd"+ "cdef" = "abcdef

6 Answers  


write a program to gat the digt sum of a number (et. 15= >1+5=6)

2 Answers  


What is dangling pointer in c?

0 Answers  


#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?

6 Answers  


how to execute with out main in cprogram

15 Answers   Infosys,


What is double pointer?

0 Answers  


Categories