Tagged Questions

0
votes
3answers
75 views

Creating custom message types in win32?

Is there a way to define and send custom message types in Win32, to be caught by your Main message handler? For example, my main message handler captures messages such as WM_PAINT, WM_RESIZE, …
0
votes
9answers
129 views

What range of values can integer types store in C++

Can unsigned long int hold a ten digits number (1,000,000,000 - 9,999,999,999) on a 32-bit computer. What is the what is the range of unsigned long int , long int, unsigned int, short int, short …
0
votes
2answers
21 views

Opening gzipped files for reading in C without creating temporary files

Hello, I have some gzipped files that I want to read in C via fopen and fscanf. Is there anyway to do this without having to gunzip the files to temporary files? Thanks.
0
votes
0answers
30 views

Need To Build Simple DNS Resolver in C

As the title says I need to build a simple dns resolver in C... Not in C++, I have looked on internet for some tutorials to help me get going but mostly find C++. Wondering whether anyone knows of …
0
votes
4answers
48 views

How to create bitmap from integer array in C / OpenGL

I am trying to move my code from Java to C, and I have encountered a problem while trying to find a function in C that can take an array of ints and create a bitmap from it for OpenGL. In Java, I …
0
votes
2answers
29 views

Dealing with system time changes

I want to know the time that has passed between the occurrence of two events. Now, the simple way would be to use something like: time_t x, y; x = time(NULL); /* Some other stuff happens */ y = …
1
vote
3answers
60 views

How to get value from 15th pin of 32bit port in ARM?

I am using an IC, DS1620 to read 1 bit serial data coming on a single line. I need to read this data using one of the ports of ARM microcontroller (LPC2378). ARM ports are 32 bit. How do I get this …
1
vote
1answer
38 views

Why does glib redefine types?

What is the reasoning behind types to be redefined in glib? Why do they turn char into gchar, int into gint etc. ?
2
votes
8answers
246 views

Can every if-else construct be replaced by an equivalent conditional expression?

(I don't have a serious need for this answer, I am just inquisitive.) Can every if-else construct be replaced by an equivalent conditional expression using the ternary operator ?:?
2
votes
2answers
61 views

Standard data structure library in C.

I am looking for standard tried and tested library in C language (windows platform) which implments dat structures like stacks/queues/trees etc. I would prefer to have a source code along with it. …
0
votes
1answer
46 views

Handling large integer on C/C++ using Visual C++ 2008

How do I do to handles some big positive integers (like 9,999,999,999) on Visual C++ 2008 on a 32-bit PC. Please give an example on declaring, printf, scanf of these big positive integers. Please …
2
votes
3answers
114 views

Why do win32 API functions don’t have overloads and instead use Ex as suffix?

The win32 API has for example two methods StrFormatByteSize and StrFormatByteSizeEx. Even though both the methods symantically do the same thing and the Ex counter part only offers a new parameter to …
2
votes
1answer
74 views

C: What is the type of &array_name?

What is the type of &a in the following code? char a[100]; myfunc(&a) Is this even valid code? gcc -Wall complains about missing prototype but will otherwise generate code as if myfunc(a) …
9
votes
9answers
350 views

Stack Size Estimation

In multi-threaded embedded software (written in C or C++), a thread must be given enough stack space in order to allow it to complete its operations without overflowing. Correct sizing of the stack …
1
vote
2answers
41 views

Sound Monitoring in C++/Python

I'm looking for an API (or some information as to where to look/start) that will ultimately allow me to monitor sound being played by the computer. My end goal (well, certain to eventually be a …

1 2 3 4 5 494 next
15 30 50 per page