SPC
Version 0.9.5
Main Page
Related Pages
Modules
Files
Examples
All
Files
Functions
Groups
Pages
ex_SizeOf.spc
This is an example of how to use the
SizeOf
function.
task main()
{
int
x;
bool
b;
char
data[] = {1, 2, 3, 4, 5, 6};
printf
(
"sizeof(x) = %d\n"
,
SizeOf
(x));
printf
(
"sizeof(b) = %d\n"
,
SizeOf
(b));
printf
(
"sizeof(data) = %d\n"
,
SizeOf
(data));
while
(
true
);
}
Generated by
1.8.2