Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Little union method
//gcc 5.4.0 #include <stdio.h> union a { int i; char b;}; int main(void) { union a A; A.i = 1; if(A.b) printf("little\n"); else printf("big\n"); return 0; }
run
|
edit
|
history
|
help
0
Lab 5 HW Spring 2017 v1.1
Jan23
structt
Replacing Evens and Odd with ones and zeroes in a 3-Dimensional array
A141212_OrdenarArrayPorFunciones
18BCE2182 ASSESS_1 Q1-7
Spring 2017 Project 2 v1.6
C_141120_factorial01
ptr_to_ptr
BSEARCH() WITH STRUCT