Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Can't deallocate pointer to structure previously allocated

c memory struct free

How come this system of particles keeps increasing in energy?

c physics

variable name change causes segfault (datatype same name as the variable, used with malloc)

Why is fprintf causing memory leak and behaving unpredictably when width argument is missing

c++ c memory-leaks printf

How to Link static or shared library to Kernel Module?

c++ c gcc makefile kernel-module

Why is this piece of code triggering "Write overrun warning (C6386)" with MSVS2012

c

C and JNI arraylist

How do I combine a shared object (.so) and a static library (.a) into a new shared object?

c linux

scanf("%s") stores string even after using it after scanf("%d")

c scanf

What is the difference between : int a = (b<<2) >>2; and int a = b & 0x3F; when b is an unsigned char?

c

How to convert an int8_t array to int32_t array in C

c arrays byte

Why would printf() crash if I pass only one argument, which is a variable?

c string printf

Is there a difference in performance when swapping if/else condition?

c performance if-statement

How to make strcmp to return 0 in assembly

c assembly x86 strcmp

c - how gets() work after scanf? [duplicate]

c scanf gets

Detect if a 32bit process is running in a 64bit environment under Linux

c++ c linux 64-bit 32bit-64bit