Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

How to circumvent the "foreground lock timeout" to activate my window?

Why does the sizeof operator produce different results for an array

c++ c

Reading an array of strings in C

c arrays string

scanf not working as expected

c scanf

How to create a program that reads the last commands exit status?

c linux shell exit-code

Is there a way to read a character from an array and then lookup it's value in a predefined enum in c?

arrays c variables enums char

How can I distinguish a pointer from a dereference in C?

arrays c pointers dereference

How does subtracting an address reference work?

Counting number of non-leading 0 in binary representation of given integer with a loop using add / jnc

trying to reverse a string inplace using two pointers

c pointers

Why use dynamic memory allocation(i.e. malloc()) when implementing linked list in c?

What is "bit padding" or "padding bits" exactly?

Why can I declare a variable after a label in GCC, but not Clang?

c gcc label clang

What is the difference between &(str[i]) and (&str)[i]?

c

Is adding a uintptr_t to a pointer symmetric?

Copying a char array to another const char array during declaration

Fermat Primality Test failure in C

c testing primes

Get length of an Array using a pointer

c arrays pointers arduino