If fgets() on a FILE* returns 0 indicating end-of-file, is it safe to call it again? That is, is it guaranteed that the function will return 0 again with no...
Dear all, At the moment I'm developing an MFC application using Visual Studio 2005, development language is C++. There is an .ini file where most constant data...
Work from Home opportunity...........Only for serious people ..... Ideal for Homemakers, students or people with spare time in day ..... Please complete this...
Dear all, I was new to C programming 4 months ago. I have learnt the basic concepts of C language. Now I am trying to enhance my skills in C language as my...
[mod-- http://www0.us.ioccc.org/1994/smr.hint --mod pn] Hi , Can anybody explain that how the below program works. Below is the quine.(program that prints out...
I have a tricky problem using SpeechSDK activeX components. I am searching for SAPI 5.3. The earlier versions do not have 'WaitUntilDone' function which I...
First off, Hello! I remember a Nabble forum being quite helpful with these types of esoteric dilemma back in the day. I hope this was one of those handy lists....
Hi All, I am very much excited on joining this group. This is my first query (hopes will over load the group in future :)) Question: long i = 2000L; why 'L'...
Hello I want to learn "C" programming. I know basics of programing in this language. Will any one help me how to start with, like downloading software and the...
Hello friends... I know all basic things which are needed to learn C langueage... I want to learn win32 Application in C.... Can anyone help in this...
Can somebody explain me why nesting functions are not allowed in C? Regrads Sumant Now, send attachments up to 25MB with Yahoo! India Mail. Learn how....
Hey all so yes basically the subject title gives it away really. Im just creating a multidimensional array made up of my own particle structure using visual...
Hi Friends I know following topics in C - language array, pointer,function, data structure,graphics and basics of C++ classes, inheritance, polymorphism and...
Hi All, While dealing with functions in C++ . Generally, the C++ convention is the call-by-value. An exception is where arrays are passed as arguments, Arrays...
Hi All, Manny languages like C++ provides a way to generate random numbers. Like C++ provides a rand(); function to do this. But (it might be silly to ask) the...
I have heard that the way string memory is handled is different in Visual Studio < 2005 onwards. For instance if you have a the following char* pChar; pChar =...
What is the easiest way to continuously catenate strings without having to allocate any memory/size of destination string. I am using VC++ 2008 express. Many...
Sorry to have posted too many. I find the msdn help so godawful! While i could not get string catenations to work still (another matter altogether), I am now...
Hi, I decided to use some of the techniques explained in 'Modern C++ Design' by Andrei Alexandrescu to create a very simple heterogeneous container. Before...
Hi everybody ... I defined and initialized an array of pointers to functions like this : int (*Func [])() = {..,..,..} . How do I get the size of the whole...
Hi, In my code for sending the data i am using sendData system call which is same as read(). But in my set up I am getting crash when system is calling this...
Hello everyone... I'm trying to conditionally build a C++ project depending on the target platform. In short, I am looking for a macro in g++ that will tell me...
CODE: int i,j=2,k=4; i=(j>3)&&(++k==6); cout << i << k << endl; i=(j<3)&&(++k==6); cout << i << k; output: 04 05 //why it is not printed as 05 16 Regards Asad...
Can you please solve my problem. I can't run the program #include<iostream.h> #include<alloc.h> #include<fstream.h> #include<graphics.h> #include<process.h> ...