RosettaCodeData/Task/Variable-size-Get/Vala/variable-size-get.vala

6 lines
210 B
Vala
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
void main(){
ulong x = sizeof(int); // returns # of bytes used to store an int
// is returned as a ulong, but could be typecasted to int with: int x = (int) sizeof(int)
stdout.printf("%lu\n", x);
}