Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Implicit and Explicit declaration

Here i wish to share a very good example which i came through,

Implicit - partial; programmer does partial,other did by compiler
Explicit - fully;programmer does completely.

E.g.
int implicit;
implicit = 6.5;

compiler converts(implies) the value to integer data type.

int explicit;
explicit = (int)6.5;

Here programmer type casting(explicitly) the value to the integer data type.

Comments

Part and Inventory Search

Blog entry information

Author
e shade
Read time
1 min read
Views
638
Comments
1
Last update

More entries in Uncategorized

Share this entry

Back
Top