-
Notifications
You must be signed in to change notification settings - Fork 78
C11 programming
bellbind edited this page Nov 1, 2015
·
2 revisions
two patterns exists:
sizeof variablesizeof (type)
Foo* foo = malloc(sizeof (Foo));#include <stdbool.h>
bool value = true;From C99, Declaration statement can mixed another type of statements.
Declared variable in for loop is block scope in the for block.