Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Writing stdin to a file

c stream pipe stdin

Program to count the number of bits set in c

c

How to use OpenSSL to validate a *.SF / *.RSA signature created by the Jarsigner

c openssl jarsigner

Loading shared library twice

c ubuntu shared-libraries

.def files C/C++ DLLs

c++ c dll

Initialization vs Assignment in C

c language-lawyer

Heap allocate a 2D array (not array of pointers)

Is there a way to make a single function operate on different structures (having common members) in c

c struct void-pointers

How to make PHP and C/C++ interact with each other

php c++ c

Non-static initialization of a flexible array member?

c

Access a global static variable from a .so file without modifying library

c compiler-construction

Replacing "==" with bitwise operators

c binary bit-manipulation

WRITE_ONCE and READ_ONCE in linux kernel

Which is better for local IPC, POSIX message queues (mqueues) or Unix domain (local) sockets?

c++ c sockets ipc posix

CAN for large packets of data exchange without using standard protocols

c embedded can-bus

Why does GCC’s static analyser falsely warn that a pointer to an allocated memory block itself stored in an allocated memory block may leak?

c gcc malloc

The x86 disassembly for C code generates: orq $0x0, %(rsp)

c assembly gcc x86-64 callstack

Why is address sanitizer not indicating a memory leak after malloc() memory was not freed?

Why return does not exit a process in xv6?

c xv6