Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Why does C have both logical and bitwise ‘or’ operators?

Why does `realloc` not re-allocate in-place when possible?

A null character '\0' at the end of a string

array with o(1)

c arrays

uint vs. unsigned int - Why not typedef uint? [closed]

c types integer typedef

Beginners question - Why does C use * to declare a pointer and not &?

c cs50

How to clear multiple bits at once in C?

c bit-manipulation

Comparing struct pointers, casting away members, and UB

Difference between using enum and int variables in C

c enums integer int constants

Are there differences between int pointer and char pointer in c?

c pointers

Why doesn't multithreading improve performance in this program for finding primes?

Can we call (void *)0 a void pointer in C?

why do we use \r and \b in C?

c

What is the use of a pointer to function as shown in K&R example

c function pointers

What is the reason behind the "False" output of this code?

c gcc comparison sizeof unsigned

Using while(str[n++]!='\0') for counting the length of a string

c

Is !x equal to true when x is negative?

c

How come the stack cannot be increased during runtime in most operating system?

When is the storage location of static variables in C++ determined? [duplicate]

c++ c build static-variables

Which is most standard: strnlen or strnlen_s?

c c11