C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
Is it possible to dereference a void pointer without type-casting in the C programming language? Also, is there any way …
c void-pointersHow can I create global variables that are shared in C? If I put it in a header file, then …
c variables linker global-variables scopeI often see source code using types like uint32, uint64 and I wonder if they should be defined by the …
c libcTrying to create a macro which can be used for print debug messages when DEBUG is defined, like the following …
c c-preprocessorI have a small server program that accepts connections on a TCP or local UNIX socket, reads a simple command …
c io signals broken-pipe sigpipeWhat's the best method to print out time in C in the format 2009‐08‐10 18:17:54.811?
c timeThe following for loops produce identical results even though one uses post increment and the other pre-increment. Here is the …
c++ c for-loop operator-precedenceI get "unknown type name 'uint8_t'" and others like it using C in MinGW. Any ideas how to solve …
c windows mingwRight now I'm trying this: #include <stdio.h> int main(int argc, char *argv[]) { if (argc != 3) { printf("Usage: %…
c iteration