How are strings stored in c?
No Answer is Posted For this Question
Be the First to Post Answer
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
when to use : in c program?
What is d'n in c?
What do you understand by normalization of pointers?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is a structure in c language. how to initialise a structure in c?
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,
Why can't we initialise member variable of a strucutre
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }