Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Why is character array processed as true by if statement?

c++ c

The `sockaddr` and `sockaddr_in` (and other similar) structs behave and are used as if they were a union. Why are they not part of an explicit union?

c sockets unix

Is `(expression, lvalue) = rvalue` a valid assignment in C or C++? Why do some compilers accept/reject it?

Passing data between dll boundaries in c++ Safely

c++ c dll cross-compiling

return in a for loop C

c function for-loop return

Question on Getcontext function

c multithreading

can size of array be determined at run time in c?

default parameters in function call in C

should I use fseek SEEK_END [duplicate]

c fseek

Building a GUI with GTK in C, is everything possible with the basics Widgets ? Or should I build a custom one?

c gtk

Why does arithmetic operations on (more than) three unsigned chars always trigger a warning when using -Wconversion?

c gcc gcc-warning

Bochs (2.4.6)/GRUB (0.97) "Error 13 Invalid or unsupported executable format" when passing char string in C function call

Should I use #include <file.h> or "file.h"?

c include

What do we iterate through when using pointer to an array? [duplicate]

c++ c arrays pointers

How to embed an integer in a macro string? [duplicate]

c macros stringification

Can __attribute__ ((packed)) create a 1-bit struct when the only member is a bit-field?

c++ c gcc attributes

Clean and type-safe state machine implementation in a statically typed language?

Writing to both stdout & a file

c file stdout