Summary: pretty much finished getting my little app to run and have a question about the system() command. i'm using a command line app called nconvert to pr...
Summary: If you embed your C executable in a script , e.g. a batch, you can check the return code to keep track of program execution; see the following Cprog ...
Summary: First, to answer the question about how to get back to the menu, add this code to your main. I've put *** at the start of lines that I've added, so y...
Summary: I've got a lot of questions about performance in C and C++. With some I think the compiler matters too, but I think it's best to assume that the best ...
Summary: Hello everyone. I have a problem that i canīt seem to find the answer for. I want to know the current location from where my .exe file is executed, ...
Summary: I have a basic C++ string question. Let's say that a function reads a string of any size from a data file or user. I need the function to reduce the a...
Summary: I'm new to using Visual Studio w/ C++. Two questions: - I added a file to a project and now I don't want that file as part of the project. How do I r...
Summary: I am using the "sytem("net send") command in a C++ program I am writing. I want the actual command that is sent to the consol to be "net send user mes...
Summary: In my c project there is a function alloc.c. In alloc.c the array allocbuf is initialized as an array of characters in: static char allocbuf[ALLOCSIZE...
Summary: I have written a mathematical programm using c++ (MicrosoftVisualStudio.NET) which basically calculates new matrices from one input-matrix of dimensio...
Summary: Yes. MS bundles this all in the term "unmanaged code". For most things, a rewrite might be a better option than any sort of wrapper. Assembly is so...
Summary: Hi. I'm in a very basic C Programming class. Its defanatly for beginners so this probably will be an easy question. I have my program set as follows.....
Summary: Hi, Have a problem in this question, (a) Average sales revenue for the year (b) Month with the maximum sales revenue (c) Month with the minimum sales...
Summary: I might sound lil noobie, but I am trying to learning C++... my questions (1) whats the best program to write source codes in c++ language (2) very si...
Summary: i've gotten my simple app working with lots of help from those here. many thanks for that! now i have a more theoretical question with regard to optim...
Summary: Hi, I'm trying to write a program in C++ using VS 2008 that will do some file processing, then call a program called scip (http://scip.zib.de/) and ge...
Summary: Hi. I made a few posts here before. Some of you may remember me.(I'd hope so, considering my posts are still on the first page :) ) I started attempti...
Summary: this problem is usual in C++ , it's very easy to compile but it's more difficult to execute. Analyse your code and find the probleme (maybe bad refere...
Summary: Hello, In C when I would use winsock, I could use listen(listener, 10) to allow 10 connections. How do I do something similar in C#? (I think it was t...
Summary: Im running VS C++ NET and when I try to build a program I get an error message saying that I need to install and start some Windows service to start c...
Summary: We are creating a booking system for hotels which is working fine and in real times but looking how to connect this up to systems such as sabre, world...
Summary: Yes, it's our good friend and buddy, the Stack. Just curious regarding what you guys think of it. Right now I'm taking a course entitled "Introduction...
Summary: I have a project that is supposed to convert numbers to binary. While the conversion is simple, i am haveing problems getting the 1's and 0's to prin...