What do the functions atoi(), itoa() and gcvt() do?


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

Post New Answer

More C Interview Questions

#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }

3 Answers   ADITI,


write a program to rearrange the array such way that all even elements should come first and next come odd

0 Answers  


main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?

5 Answers   TCS,


Write a program to print the prime numbers from 1 to 100?

7 Answers  


Can 'this' pointer by used in the constructor?

0 Answers  






Famous puzzles which are generally asked by companies during interviews ?

1 Answers   3D PLM, Yahoo,


What is include directive in c?

0 Answers  


What is identifiers in c with examples?

0 Answers  


What is your favorite subject?

1 Answers   Ericsson, Invendis, Tech Mahindra,


what is the use of operator ^ in C ? and how it works?

2 Answers  


What is 'bus error'?

0 Answers  


Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);

1 Answers  


Categories