... Can you show us the code that is giving the error? Ray __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has...
Hi all I have a problem in compiling a qt program. the first 2 steps i.e., qmake -project and qmake r successful but ... is given it giving the following...
Hi i am using GCC compiler, i couldnt find itoa() in it, and is there any thing similar to it in linux. what is the alternative for this..if u r avare of this...
... A number of things changed in VC7's ATL/MFC implementation that have migration implications that carry over to VC8. One of the things that changed is that...
... strtol()? -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 Safe C++ Design Principles (First Edition) Learn how to write memory leak-free, secure, ...
... http://msdn2.microsoft.com/en-us/library/yha416c7(VS.80).aspx ... Victor A. Wagner Jr. http://rudbek.com The five most dangerous words in the English...
... Just to prevent the spread of misinformation... The above is a compiler problem, not a linker problem. Include files are only used at the compile stage,...
... itoa() is not a standard C function... so not all compilers have it. It *might* be declared in stdlib.h, depending on the version of the compiler (newer...
I want scanf to respond to "enter" key. Like in the program below, what should I use as an condition in "if" and at the same time how should I manipulate...
... C or C++? -- Brett -- Brett McCoy: Programmer by Day, Guitarist by Night http://www.alhazred.com http://www.cassandrasyndrome.com http://www.revelmoon.com...
hello group, please tell me ouput of the following programme and tell me the reason behind output. thanks void main() { int number; printf("%d", scanf("%d",...
... Show us what you've done so far. Have you searched Google? Wolfram? Wikipedia? Have you looked through c-prog's wealth of resources? A simple Google...
... It shouldn't even compile. Even if it did, the style is cramped and uses non-Standard functions. The answer you are probably looking for is something...
i am using c++ compiler G++, i am trying to convert int to string so that i can write it onto ttyS0 using write() system call. ... You haven't said what...
I've been dealing with a similar issue at work. Take a look at bitset<N>. It's part of the STL and works great for bit manipulation. HTH -- Bill Lugg Milstar...
Hello all, i have a problem while handling the Hotel billing software which i am doing as a project, " i have no problem for maintaining the database for ...
... Many people are not going to understand much of what you said. Show us the source code and put in comments where the problem areas are. -- Thomas Hruska ...
... You've supplied us with some irrelevant information and left out some other information that is much more important. As I understand it, essentially you...
... This is not a "scanf()" issue. scanf() simply stores whatever it finds in the memory pointed to by its parameters. [Roughly spoken, I know that this is not...
... Not necessarily. Anand, if you're working with pure C under Unix/Linux, you might want to try the MP library (gmp under Linux), it provides means of...
... Here is a discussion for itoa and C++. It's not a standard function in ANSI C, so not all compilers support it. Newer versions of gcc/g++ may support it (I...