Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
cvdfgbvf
SUBMITTED BY:
Darshil
DATE:
June 27, 2016, 8:16 a.m.
FORMAT:
C++
SIZE:
328 Bytes
Raw
Download
Tweet
HITS:
957
Go to comments
Report
#include
<iostream>
using
namespace
std
;
// Variable declaration:
extern
int
a
,
b
;
extern
int
c
;
extern
float
f
;
int
main
()
{
// Variable definition:
int
a
,
b
;
int
c
;
float
f
;
// actual initialization
a
=
10
;
b
=
20
;
c
=
a
+
b
;
cout
<<
c
<<
endl
;
f
=
70.0
/
3.0
;
cout
<<
f
<<
endl
;
return
0
;
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus