Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

How do I access the registry, and loop through keys in C (Example C# code provided)?

c# c windows winapi registry

how to read hdf5 boolean enum created by h5py in C

CppUTest not working

c unit-testing tdd

make: excluding main.c from rule that .o file depends on .h file

c makefile

C How to exit the command prompt

c

accessing structure variable through pointer

c pointers structure

Finding the size of a pointer

c

Can you use #defined values in if statements (In C programs)?

Is there any C\C++ Cross-platform library for sharing data between app's?

c++ c cross-platform sharing

Reading binary data into memory structures, weird effects

c data-structures

C: variable argument list using stdarg.h

c variadic-functions

What does the 'where' keyword mean in C?

c syntax

iphone - converting float to integer

iphone c objective-c

Instruments to check for leaks in C?

Testing equality of symbols using the Ruby C API

c ruby ruby-c-extension

Array of private pointers to shared array in UPC

Printf format specifier and fields outside quotes

c printf

Access violation after malloc

c malloc access-violation

Why does *(a+b) work in C instead of a[b]?

c arrays