Very intresting please note that header files are supposed to contain information which is essential for "compilation" of program, so please let us know why...
Dear friends I need codes regarding "Mouse programming" in C or C++. Please mail me if you do have one. Thanks. From Rishabh Mehta ... Find out what India is...
... <snip> ... <snip> By taking one look at this code I would say the cause of your trouble might be that you're using float variables. Switch to doubles, this...
Dear , There is no standard API in c or c++ for handling mouse events, So you must use your own Operating System API for theses. What is your OS the we will...
Hello Rishabh, What do you mean by "Mouse Programming" ??? are you going to write device driver for mouse or want to just handle mouse in your program . And...
Thanks for your help...I changed "float" to "double" and the version that did not run, did run and produce correct results. However, I don't understand why...
#include<iostream.h> void main(){ int size1;size2;**p; int *p1=new int [size1]; int *p2=new int [size2]; cin>>size1; cin>>size2; for(int i=0;i<size1;i++) { ...
http://m68hc11.serveftp.org/doc/cpp_2.html#SEC10 ... which is essential for "compilation" of program, so please let us know why you believe that it may be...
... You don't initialise size1 or size2. ... How big are you expecting these arrays to be? ... No error checking. ... Even less error checkiung. ... Why are...
... That's talking about a compile time directive. If you want a different set of headers included, you need to change some #defines and recompile. -- PJH ...
Hi All, Can anyone there pls explain me the meaning of return in C/C++ programming? Plus can u also pls explain me the following program, esp. the meaning of...
Hi, Ques : Can anyone there pls explain me the meaning of return in C/C++ programming? Plus can u also pls explain me the following program, esp. the meaning...
hi there r basically three types to get out from a function 1. exit-- which returns to the o/s with some cleaning up, operations in the buffer. 2. _exit --...
Hi Friends, I have three requirements. As I am not a C/C++ expert, I am finding initial difficulty to guess how to go about these three tasks. Kindly help with...
High........ I am Franklin.I am in Msc Comp Sci 2nd year. I a doing a project in C.I want to search a file on a hard disk right at the start of my project.I am...
Hi I'm interested in learning to write programmes and was hoping I could find some good advice on places to start. I read somewhere that C programming was...
Hi, If you need to use the file deletion operation reursivly, you can write code for it by using C/C++ standard library funcions. you can get many functions...
Nishant ji,Thanks. nishant mandilwar <nishant.mandilwar@...> wrote: this is o pointer.. so we can return it in a function On 11/8/06, rabinarayan biswal...
... <snip> ... <snip> Wonderful example how NOT to write a C/C++ program for several reasons: 1) the code is NOT portable; it works solely under Turbo C++...
... if u have good understanding... go for... The C Programming Language else as a beginner u can choose a good local author(Preferably a reputed one)... Best...
hi can anybody tell me how to write program in C++ for reading and writing Stereolithography (stl) CAD data file. thanks and regards ... Find out what India is...
Hiii.I am doing Msc2(Comp Sci) from Somaiya College.I am doing a project in C.At the start of my project I want to check whether the Floppy drive or Cd Rom...
... Hi Franklin, we could respond faster and better if you provided more details about your environment. For example, your message sounds as if you're working...
... I would also contend that you should avoid using scanf() all together (use fgets()). Try running your program and entering in 'q' instead of a number....