C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
I've seen this unsigned "typeless" type used a couple of times, but never seen an explanation for it. I suppose …
c types unsignedI have a char* array as follows: char *tbl[] = { "1", "2", "3" }; How do I use the sizeof operator to get the number …
c sizeofMy code is: #include <stdio.h> #include <string.h> void main() { char string[10]; int A = -73; …
c pointers printf memory-address unary-operatorConsider: int testfunc1 (const int a) { return a; } int testfunc2 (int const a) { return a; } Are these two functions the …
c++ c constantsI'm writing code which has a lot of 1 & 2 dimensional arrays. I got "error: can't allocate region" and I think …
c memory-management malloc(I am running Linux Ubuntu 9.10, so the extension for an executable is executablefile.out) I am just getting into modular …
c makefile compilation modularWhy is this a warning? I think there are many cases when is more clear to use multi-char int constants …
c++ c casting compiler-warnings portabilityI'm looking for the easiest way to play a MP3 file in C. I am looking for either a library, …
c mp3