Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
pointer**
//Title of this code //gcc 4.8.2 #include <stdio.h> #include <string.h> //#include <iostream.h> struct elev{char *nume, *prenume;}; int main(void) { int *adr,**adradr,i=2; adr = &i; adradr=&adr; printf("%d\n,%d\n",*adr,*(*adradr)); //--------------------- int b=3, *ada=&b;++*ada; printf("%d\n,%d\n",*ada,b); //-------------------- struct elev a, *adre=&a; a.nume="Ion"; a.prenume="Ionescu"; printf("%s\n",adre->nume); printf("%s\n",adre->prenume); return 0; }
run
|
edit
|
history
|
help
0
ALPAHABET PATTERNS
Matrix multiplication. C
150116_OrdenMatriz
123
C programming example implementing a function to set a specified bit in an int (from ECE 2534)
Lab 8 part 2 v.07
C programming example that implements a modified string length function (from ECE 2534)
A_141117_Primo02
Test2
UserDefinedDataType_pointer1