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

print the palindrome numbers in between 0 to n

1 Answers  


consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is

4 Answers   TCS,


How to develop software using "c" programming?

1 Answers   IBM, TCS,


what is the difference between i++ and ++i?

5 Answers  


#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39

1 Answers   GameLoft,


program for validity of triangle from 3 side

7 Answers  


. Explain the differences between fork() and exec() in C

2 Answers  


What are the standard predefined macros?

0 Answers  


What are the 4 types of unions?

0 Answers  


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

0 Answers  


Why clrscr is used in c?

0 Answers  


What is string function c?

0 Answers  


Categories