Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

How to set bits in byte without loop

c++ c bit-manipulation

Why is `x && y` not parsed as `x & (&y)`?

c parsing

Looping through a char array in C

c string pointers

memory allocation in array of structure using double pointers in C

c arrays pointers struct

Swapping first and last name in C

c

strcat() vs sprintf() inside a loop

Usage of extern in the same file

c linker extern

Why does insertion into a list require a pointer to a pointer

c pointers

C: What happens (in detail) in x=~x if x is of type char?

c type-conversion operators

What is __attribute__((unused)) static?

c gcc gnu libuv

Converting pid_t to string

c string pid

Big Oh Runtime of a Recursive Sum

c recursion sum runtime big-o

Local int vs Global int in C

Memory order consume usage in C11

c multithreading c11 stdatomic

Output for the following C code is confusing me [closed]

c

Are parentheses always considered a function call?

c operator-precedence

Void function call as expressions

c

Is the return statement considered to be an expression statement in C?

c expression

How is the value of global variable changing in my code?

c global-variables

Can a type in C have more than one object representation?

c