Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

How to use a variable as a format string in printk?

c linux-kernel printk

C: Array initialization requires a brace-enclosed initializer list - simple code

c arrays

How to pass structs to C function from x86-64 assembly on Mac (NASM)

c assembly struct x86-64

Is NULL a pointer?

How can I work around GCC optimization-miss bug 90271?

c gcc compiler-optimization

What is the relationship between POSIX and the C language?

c linux posix

Reading value from memory location (with 24-bit address) in 8-bit microcontroller

c pointers memory embedded

Linux system calls vs C lib functions

c linux system-calls

"Unknown type name" in Enum C

c

gcc flags to disable arithmetic optimisations

How to emulate _mm256_loadu_epi32 with gcc or clang?

c++ c intrinsics avx512

How to call a Nim function from Rust through C-FFI?

c rust ffi nim-lang

How can I return a string allocated in C to Ada and free it in Ada?

c ada

Most efficent way to calculate CRC64 with reflected input

c performance crc crc32 crc64

Dereference operator (*) differences between char* and int*

Which AVX and march should be specified on a cluster with different architectures?

Passing a C-styled integer array to an Ada function to retrieve the first element in the array

c googletest ada

what does this line of code "#define LIBINJECTION_SQLI_TOKEN_SIZE sizeof(((stoken_t*)(0))->val)" do?

GDB-remote + qemu reports unexpected memory address for static C variable

c x86 gdb qemu osdev

Can we assume that x == (int)sqrt(x * x) for all positive integers?

java c++ c math