C Board Forum » C Programming
1,575 FOLLOWERS
C Board is a place to ask questions related to game programming, C programming, C++, C#, Linux programming, and more. Discuss your doubts or problems that you face while working with C and get them answered here in this category.
C Board Forum » C Programming
3d ago
how do assign a multi array array[x][y] if array is declared as variable array[int1][int2] any help ..read more
C Board Forum » C Programming
3d ago
Hello, I want to program a MMU and for that I want to define different datatypes for the entries of different table-levels. So for a level 1 table, the entry consists of the upper bits [31:20]. For a level 2 entry it might be [31:16] or [31:12] the rest of the bits store different access ..read more
C Board Forum » C Programming
5d ago
hello, I am trying to assign an multi INT array [x][y] and output all Code: --------- int i; int i2 ..read more
C Board Forum » C Programming
1w ago
Hello C board, I am making a browser using x11 and in that I was wondering how I could run multiple event loops (that only print text) in X11. Before you say pthreads the problem I need more than one function argument (three to be exact) one for the text, and the other two for the width and height ..read more
C Board Forum » C Programming
3w ago
Hey, happy new year! I'm slowly coming back to C (nothing serious or professional) and I'm getting myself consulting documentation often. What's your online reference of choice? So far I've been using cppreference.com ..read more
C Board Forum » C Programming
3w ago
Hello, I want to write a compiler and need a language with pattern matching, sum types and one that can easily traverse an Abstract Syntax Tree and evaluate it. The last point is easiest when the AST is modeled as a tree and every component is a subclass of a tree node. Every tree node ..read more
C Board Forum » C Programming
1M ago
so, at the moment i have this code Code: --------- int i2; printf("enter number amount\n"); scanf("%d",&i2 ..read more
C Board Forum » C Programming
1M ago
I've developed this method of using union to use multiple structs from single type pointer. It's working and I have dereferenced two different structs but there's a warning and I don't know what is the reason for it. Code: --------- #include #include #include ..read more