Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Does C have namespaces similar to C++?

c

What's the difference between calloc & malloc followed by a memset? [duplicate]

c malloc calloc

C: macro produced warning "statement with no effect"

c gcc macros warnings

Visual Studio Code: exclude sections of a file from autoformat?

How do i solve this in a faster and more accurate way?

Difference between Executable and Linkable Format(.elf) and Object(.o) file

c elf object-files

Why am I getting "double free or corruption" with the following code?

c cs50

Why C standard does not define the behavior of fflush(stdin)?

c

C printf: variable string column width, left align

c pointers formatting

Why is the beginning of a C file stream called `SEEK_SET`?

c file io

When sending a UDP packet, how do you get back the system-assigned outgoing port? (BSD C sockets)

c sockets

Where does a function declared in .h file find the its definition?

c compilation

Pulseaudio C API: create a null sink

c pulseaudio

Free all memory allocated by LLVM on exit

c memory-leaks llvm valgrind

Why does "int x = 5; printf("%d %d %d", x==5, x=10, x==5);" in C print "0 10 0"? [duplicate]

c printf undefined-behavior

aio_write on linux with rtkaio is sometimes long

c++ c linux asynchronous io

bitpack ascii string into 7-bit binary blob using SIMD

c ascii simd sse intrinsics

YACC : symbol **** is used but, is not defined as a token and has no rules

Why is numba popcount code twice as fast as equivalent C code?