|
Electronics Circuits &
Tutorials |
|
|
|
|
|
|
Home >
Electronics Tutorials >
C Language
Tutorial > References
- Typecasting |
C Language Programming Library
Reference Guide
|
References
- Typecasting
|
|
Typecasting allows a variable to act like a variable of another
type. The method of typecasting is done by prefixing the
variable type enclosed by parenthesis before the variable name.
The actual variable is not modified. Example:
float index=3; int loop=(int)index;
This causes index to be typecasted to act like an int . |
|
|
Note: To report broken links or to submit your projects,
tutorials please email to Webmaster |
|
|
|
|
Copyright ©
1999-2020
www.hobbyprojects.com
(All rights reserved) |
|