Recent Post
About me

My name is Frankentein I’m a programmer...
What is Structure? The structure is user define data type .structure contain variable and function which can use in main().We can acce...
main() the scope is limited to onlymain(). Any other function cannot see that definition and hence, cannot make use of that structure definition. I will recommend you to declare outside of main().struct addrress{ datatype variable-name; datatype variable-name; datatype variable-name;}; struct Structure-name refrence-variable-name; refrence-variable-name.variable-name = 12;struct addrress{ datatype variable-name; }a;/* where a is refrence-variable-name*/
My name is Frankentein I’m a programmer...