Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Function returning 101 and -101 instead of 1 and -1

Why does an `invlpg` instruction not work when I pass a pointer as a memory operand in inline assembly?

c assembly x86 inline-assembly

How to fix a C Program bug, preventing Multiple File Creations in a single execution?

Does C language spec guarantee mapping of Unicode code points to numerical wchar_t values?

uint64_t or int64_t for bitwise operations?

c

What is the difference between an enumeration constant and an enumerator?

c enums scope enumeration c17

Lex Setup Correctly Validating Assignments but not Expressions

c lex

Using multi-char literals as enum values

c

What C GNU-isms exist?

c gcc language-extension

Memory allocation for union in C

c arrays unions

What will happen if I call pthread_join() on an unused pthread_t?

c++ c pthreads

How to set several number of threads in hybrid openMP/MPI program

Split string into Tokens in C, when there are 2 delimiters in a row

c split token strtok

Portable way to tell the compiler that alignment is OK without supressing the warning?

Checking if two arrays are equal - C

c arrays

mq_open err no 13 Permission denied

c linux posix message-queue

What is the best way to loop through a 2D sub-array of a 2D array?

c multidimensional-array

Macro evaluation in c preprocessor

c c-preprocessor

How does read(2) in Linux C work?

c linux system