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
Multimedia
Remove
Platform
Any
License
Any
Hi
First of all Qt is not a compiler, it's just an IDE, it's based on the gcc, yet you can use borland C++ or MS VC++ once you have Qt onboard.
I'm not sure what do you mean by "do all the work"...
Turbo C has a very easy to use debugger - I am sure if you use it - you will see what is wrong. Set a breakpoint AFTER any input, like that:
scanf ("%f", &value);
C++ is best programming language.
#include
#include
void operations(
void
);
int main(
void
)
{
operations();
getch();
}
void operations(
void
)
{
int a,b,c,d,menu;
clrscr();...
Hi,
Can any body explain about
How a discrete signal(Am using an audio file as a signal) can be bandlimited. In my process first audio signal is split to frames containing some samples, Is...
Depends on the style of GUI you are looking to do. If it is just menus, buttons, and forms than the easiest would probably be things like, C++Builder, C#, or Visual Basic. If you are looking to...
Can anybody recommend libraries for creating a GUI with C++? I've always created web applications with HTML/CSS/PHP/MySQL/Flash and AS3, but I am now interested in creating desktop applications....
Hello. Wich one is better for newbie D3D or OpenGL to create 3D graphics? I'm looking forward to create a tiny game.
Hi,
I've developed my own database and stand alone applications in B++Builder 6 in Windows XP and the last compile was during 2008. I need to upgrade now on laptops and one option is Windows 7...
0) which have volume x, y,z of water.
Water can spill from vessel to vessel, and always so that the container "where" fill and the container "from" where we spill, completely emptied. The volume...
So I'm making a simple Mastermind game in C/Unix and I was wondering if there is a way to allow for one player to enter a code on screen but have it appear as *'s once they press enter, or even show...
I'm thinking the odd character is the \t you've got in the strings; it's probably printing the character mapped to 0x09.
What are tabs in the strings?
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...
I fixed some of the code (see RED). Not sure what exactly do you need. If you need the contents of client area, then you need to use GetClientRect and not GetWindowRect. However, if you need to...
I'm trying to capture a bitmap representation from a window and all seems to work except for the final step; getting the pixel data out of the HBITMAP.
Below is the 2 functions processHBITMAP and...
connect(nextmeetingButton, SIGNAL(clicked()), mymsg, SLOT(nextmeeting()));
QObject::connect(quitButton, SIGNAL(clicked()), qApp, SLOT(quit()));
return box;
}
#include
#include...
I get this runtime error
** Gdk **: _gdk_drawable_get_source_drawable: assertion `GDK_IS_DRAWABLE (drawable)' failed
I passed a GtkWindow to gdk_gc_new(drawable). I know this because of the...