How a string is stored in c?


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

Post New Answer

More C Interview Questions

Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.

0 Answers  


What is the difference between NULL and NUL?

0 Answers   Aspire, Infogain,


In a switch statement, explain what will happen if a break statement is omitted?

0 Answers  


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

2 Answers   Vector, Vector India,


Does c have an equivalent to pascals with statement?

0 Answers  


Can you apply link and association interchangeably?

0 Answers   InterGraph,


Write a program that can show the multiplication table.

0 Answers   Student,


What is static and volatile in c?

0 Answers  


write a program to display the frequency of each element in a given array in c language

1 Answers  


Why clrscr is used after variable declaration?

0 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


Do array subscripts always start with zero?

0 Answers  


Categories