C
In computing, C is a general-purpose, block structured, procedural, imperative computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.
Application
Any
Platform
Windows
Remove
License
Any
Try this:
1. Get the full path to the program EXE file. In Win32 use GetModuleFileName() function. You get back a string with something like this:
"C:\Dir1\Dir2\Dir3\Program.EXE"
2. Cut off...
Event viewer in Win 2000 and XP aren't directly consuming any traces from ETW, I can only log it in to an ETL file. Is it possible to log real-time, in to the event viewer in Windows 2000? I know Its...
hi evereyone, i have some problem related to graphics in c++ that is when i include graphics.h in my program and use graphic command like draw line etc..then suddenly windows has been closed and...
Hi!
What was the error message without MSYS?
It was long time ago, but as I can remember, I add the command line options to g++ manually.
I mean, see the pkg-config output, and add it manually...
If you have an old 16-bit compiler, you can do this stuff under XP. Sounds like you do since you mention Turbo C.
As for using a more modern compiler in protected mode -- use something like...
I already address the size issue by using large model and allow for far pointers.
So with the size limitation address, can these low level operation work in XP or 98 OSes?
Can you clarify some...
Hi,
I need to write a program that can work as a service in windows XP.
It checks every minute if a process called 'myprocess.exe' is running.
If the process is not running, the service should...
Question section
Google Link: http://www.google.com/search?q=www.mybestnotes.co.in
Home Page: http://www.mybestnotes.co.in
Thanks and regards,
Karshant
SHENZHEN CREATIVE SKY TECHNOLOGY CO., LTD
1. compatibility: PC, Netbook or Maciontosh with USB port
2.Operation System: Windows vista/xp/2000/ME/98/95 or Mac. OS9.1 and above
3.Drivers:...
On Windows, just use SGBD apis
(see Windows api group http://tinyurl.com/yjy3ajr)
Always specify which compiler are you using. For Windows you can even use the Turbo C.
I see... I never use SetMapMode - I do all world transformations in my code if needed. I have seen some problems caused by non-English Windows (Korean in my case), but these issues were in .NET...
hi there i've got the following code to test on, you can try it on your computer aswell
int a=0;
char* array = new char;
int b=0;
delete[] array;
int c=0;
ive placed breakpoints on all...
You can't use backslash \ in C/C++ strings. This is reserved for special characters such as \n \0 etc.
Fix the problem by replacing every '\' with '\\':
system("C:\\something\\something.exe");
There are two ways you can do it:
Either get a fancy RAD tool like Embarcadero Builder or Visual Studio and learn how to use them. They are professional tools saving you a lot of effort when...
Use power apis (see on http://tinyurl.com/cmhb5g, C code)
Hi
I’m fairly good at c++ and I’ve just wrote a little program in Dev c++ and it works fine however, I would like to to write the program as a windows application in witch I have little or no...
OK, I'm C/C++ Beginner ( just know few concepts of each )
I want know the perfect learning and practicing path to be kinda professional
that can do just every thing with c and c++ from console...
You need to learn how to build a GUI.
Graphical user interfaces usually come in Windows and Linux flavours. There are lots of toolkits for C/C++ and C#, and it is hard to say which is the best....
Once you grasp the basics of C++, you should study commonly used algorithms and data types. Linked lists, binary trees, search & sort algorithms etc. This is useful knowledge no matter what branch of...