Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

K&R C Exercise 4-9: Why ignore EOF?

c push-back

sort and remove duplicates from int array in c

c arrays sorting

Sending a struct from kernel to userland via netlink

Sorting 2-dimensional array in ANSI C with qsort()

c sorting quicksort ansi

Implementing logical right shift using only "~ & ^ | + << >> =" operators and 20 operations

c bitwise-operators

C optimzation techniques

What is behavior of NULL parameters to strstr?

c language-lawyer strstr

Is there a C library for GUIs that does not require its own event loop to be used?

Render to 1D texture

c opengl glsl shader

Is this a VC compiler bug? About unsigned integer wrapping

c visual-c++ unsigned

How to know written var type with Clang using C API instead of actual?

c++ c clang

How to get function pointer in LLVM

Upload file using libcurl + POST and headers

c curl libcurl

Capture video from camera on Raspberry Pi and filter in OpenGL before encoding

Ignoring or redefining GCC Standard Predefined Macros

fflush - how to check if last operation was output operation

c++ c

parsing JSON with jansson in C

c json text web

Rounding up integer without using float, double, or division

c math rounding

Freeing an array after it has been written to by MPI_Recv

c malloc mpi free

When do I need a function to run before or after main()?

c gcc main