What is atoi and atof in c?


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

Post New Answer

More C Interview Questions

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,


What is a spanning Tree?

1 Answers   TCS,


fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }

17 Answers   NDS,


How many types of linked lists what are they? How many types of data structures?

18 Answers   BSNL, Pivotal Software,


Explain what are the __date__ and __time__ preprocessor commands?

0 Answers  






What is the difference between int main and void main?

0 Answers  


How do we declare variables in c?

0 Answers  


What is difference between arrays and pointers?

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  


Which are low level languages?

0 Answers  


Program to swap the any two elements in an array containing N number of elements?

1 Answers   Bosch, Glenwood, Ugam Solutions,


How to implement a packet in C

0 Answers   Aricent,


Categories