int main(){ f1(); f3(25); Print("Hello world!");};void f1(void){ if(a == 2) b = 3;};
int main(){ f1(); f3(25); Print("Hello world!");};void f1(void){ if(a == 2) b = 3;};
------------------
int
main
(
)
{
f1
(
)
;
f3
(
25
)
;
Print
(
"Hello world!"
)
;
}
;
void
f1
(
void
)
{
if
(
a
==
2
)
b
=
3
;
}
;
BuildInType int
Identifier main
Punctuator (
Punctuator )
Punctuator {
Identifier f1
Punctuator (
Punctuator )
Punctuator ;
Identifier f3
Punctuator (
Number 25
Punctuator )
Punctuator ;
Identifier Print
Punctuator (
Literal_String "Hello
Punctuator )
Punctuator ;
Punctuator }
Punctuator ;
BuildInType void
Identifier f1
Punctuator (
BuildInType void
Punctuator )
Punctuator {
ControlKeyWord if
Punctuator (
Identifier a
Operation ==
Number 2
Punctuator )
Identifier b
Operation =
Number 3
Punctuator ;
Punctuator }
Punctuator ;