You are here:

C/C++

Recent Answers

2013-05-23 C - few questions regarding programming:

1. Stack is FIFO (First In First Out) structure, but deque can be used both as a FIFO(First In First Out) and FILO (First In Last Out) structure, by pushing or popping elements at both ends of the structure

2013-05-21 C++ - how to convert binary to hex (c++) and other questions as well:

To deal with bits (numbers to strings of 0's and 1's etc) use std::bitset<>  http://en.cppreference.com/w/cpp/utility/bitset    To convert anything from or to a string use std::istringstream / std::ostringstream

2013-05-04 Object Oriented Programming - career change:

Hi todd    Indeed certification will help you for getting a job but before going to object oriented programming you must know what is called as procedure oriented programming. If you are a beginner i will

2013-05-03 C - Input files:

Hi David,    After the last number is scanned by scanf it does not reach EOF, and therefore feof returns zero. On the last scan, scanf returns EOF and does not set "x" again causing it to hold the previous

2013-04-30 C++ - application status:

Would a text based program that can be run from the console be adequate?    If it is, I could send you a sample C++ program that could do this task (I'm not into graphical user interfaces). This would

Categories

Browse Alphabetically

©2013 About.com. All rights reserved.