Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Why is malloc( ) initializing the value of a newly allocated block of memory?

c dynamic-allocation

Common C pattern, but expressed in C++?

C malloc allocated only 8 bytes for int * [duplicate]

c malloc

What is the difference between an IOCTL and an IRP

c kernel driver wdk

What happens to array[1]

c++ c arrays optimization

Why is my (re)implementation of strlen wrong?

c++ c string recursion strlen

Why does lseek allow me to set a negative file position?

c linux

why Behavior of sprintf and snprintf is different when we use same source and destination?

c printf

store argv[1] to an char variable

c argv

C Hello world: Code Blocks IDE, MinGW C compiler on windows

c windows gcc mingw codeblocks

Is there any operator in c which is both unary and binary?

How &a is a pointer to a if it generates the address of a?

c pointers memory-address

Right shift for signed integer

c

Why ternary operator does not support blocks?

C segmentation fault when passing a NULL pointer despite a conditional telling the function not to run if a NULL parameter is passed?

c string segmentation-fault

The difference between size of datatype and sizeof(data type)

c++ c

When does memory load cause bus error on x86-64 linux?

c linux assembly x86

printf redifines UINT32_MAX

c printf

Program hangs after opening file with open and fdopen [duplicate]

c

Does a for loop re-evaluate the functions in its body in each iteration?

java c++ c for-loop