C++ doubts!

name the header files to which the following belong:
a)abs()
b)atoi() [whats that?]
c)open()
d)frexp() [whats that?]
what are the probable type of questions from stacks and queues?
plz reply as soon as possible!computer exam on 25th no use of answering after that[3][3]

2 Answers

39
Pritish Chakraborty ·

a) abs() - math.h
b) atoi() - stdlib.h convert string to integer.
c) open() - open function from file handling? fstream.h
d) frexp() - http://www.cplusplus.com/reference/clibrary/cmath/frexp/
math.h

Stacks and Queues - Push,pop,display in array style and linked-list style implementations.

1
Arka Halder ·

Thanks a lot pritish.

Your Answer

Close [X]