How are strings stored in c?


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

Post New Answer

More C Interview Questions

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

1 Answers  


How do you write a program which produces its own source code as output?

0 Answers  


What is the purpose of Scanf Print, getchar, putchar, function?

3 Answers  


Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

0 Answers   Convergys,


ABCDCBA ABC CBA AB BA A A

4 Answers   TCS,


What is the difference between near, far and huge pointers?

0 Answers  


What are different storage class specifiers in c?

0 Answers  


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


What are the different types of C instructions?

0 Answers   InterGraph,


is it possible to create your own header files?

0 Answers  


Write a program to generate the Fibinocci Series

0 Answers   TISL,


When is a void pointer used?

0 Answers  


Categories