Thread
:
default values for C struct fields
View Single Post
technosavvy
Contributor
15Jan2008,15:27
if you want to initialize everything with a zero...
u can go for
Code:
employee emp1 = {0};
..