c struct

Code Example - c struct

                
                        Stack_t push(Stack_t, Element_t);
Element_t pop(Stack_t); 
Element_t peek(Stack_t);
                    
                
 

struct

                        
                                #include <stdio.h>

main () {
	struct person {
		char[] name;
		int age;
	}
}
                            
                        
 

Related code examples