Summary: I write the following programe.The output confused me much.Someone please kindly explain why this happen. #include #include #include main() { ...
Summary: I have to write a short C++ program that reads from a data txt file which hp vs. rpm will be the data that is in the file. The program then calcul...
Summary: Hello all, i'm having a bit of trouble with my basic C program. I'm not all to good with C as it stands anyway, so managed to find this place. I've be...
Summary: I'm not sure if this is a parsing problem or not, but I would appreciate help. My fingers are bleeding from goolgle searches on the problem. I'm tryi...
Summary: for (n=0; n = 0; j--) { tmpstrg[j] = *pSentence; ++pSentence; } This loop appears messed up. Assuming that you meant the middle section to be "n ==0"...
Summary: For anyone interested in an IDE for C/C++, this might be one of the easiest I've used. In under a half an hour I installed it and had a basic C++ prog...
Summary: Hello, I've completed a simple C program which meets all the requirements except one that I am having difficulty with. My user input must be accepted...
Summary: We are trying to help you. You obviously have some C programming knowledge and you have in the code that you posted all of the tools necessary to make...
Summary: Thanks klint it seems windows or at least vista wont let you delete a directory if it has files in it. I think I found what I was looking for. I will ...
Summary: Put the function prototypes in main, put the function definitions and/or defines in a seperate c file. #include #include #include "primes.c" void prn_...
Summary: Alright, thanks for the info. How would you use this in a console c++ program? I have tried using a character string, but it doesn't seem to work. W...
Summary: Please, can anyboby help me with the problem in this simple C program ? After running, I can answer just the first question. The second question comes...
Summary: I'm trying to make a simple c program that does a checksum of a string. Basically I want the user to enter a sentence ending with a period, and do a c...
Summary: Hey Guys. I'm a grade 9 students who did a little c programming at home (i went over a tutorial have the basics of c programming) and right now in sch...
Summary: Yeah, you can do it. Have a look at classes in java.io: InputStream and DataInputStream. They offer 'read' methods which reads data from disk and put...
Summary: Hello everyone! :-D Long time no see, eh! :-P Alright... I'm trying to make a game, which, for now, will have a map of 3 layers: Layer 1: Walkable (Sa...
Summary: Could any body please help me on this...... I have to search count of files in a folder C:\Log\Staging I am using the below command in my batch file :...
Summary: Could any body please help me on this...... I have to search count of files in a folder C:\Log\Staging I am using the below command in my batch file :...
Summary: Hy guys!I have a little problem.I have to simulate the linux wc comand in a c program.I`ve figured out how to count the lines and "\n" but the countin...
Summary: is there an easy way to play an mp3 in a program written in c++ using the windows.h api? i need the user to be able to click a button and have the son...
Summary: Hello there I need a lil' help in a c++ program I have to write. I should write a recursive function that gets a single-dimensioned array in the lengt...
Summary: I am new to C so be easy on me! :| I know it sounds stupid but i'm trying to make a program that basically works just like the msdos prompt. I wont go...
Summary: I dont think i can beat Jacks post, but ill give it a try!! I think that everyone has explained Arrays and OOP much better then i can, so ill talk a l...
Summary: I am trying to open a file for reading and a file for writing in c programming. This is how I do it. FILE *in, *out; if ((in = fopen(argv[1], "rb")) ...