Source
#include<stdio.h>
int
main
(
)
{
int
a
=
5
,
b
=
6
,
c
;
c
=
a
+
b
;
printf
(
"%d"
,
c
)
;
return
0
;
}