Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
printint a struct
//gcc 5.4.0 #include <stdio.h> struct p { int a; int b; int c; int d; int e; int f; char g[100]; }; extern struct p foo() { struct p s = {1,2 }; return s; } int main(void) { struct p s = foo() printf("%d\n", s); return 0; }
run
|
edit
|
history
|
help
0
In Class 1.23.17 Bit operations
CPTTRN_2
10
C_141113_Primo01
menu
convertletter
bit shift and mask
first C code
h
ptr_to_ptr