About 50 results
Open links in new tab
  1. What exactly is a type cast in C/C++? - Stack Overflow

    A type cast is basically a conversion from one type to another. It can be implicit (i.e., done automatically by the compiler, perhaps losing info in the process) or explicit (i.e., specified by …

  2. Type-casting in C++ - Stack Overflow

    Jan 30, 2015 · I'm studying C++ by two months using the book : Programming principles and practice using C++, and now I wanted to clarify some doubts about my casting. When I am …

  3. what does typecasting actually means in java? - Stack Overflow

    Aug 5, 2011 · Typecasting is also known as type conversion, it is to change an object from one data type to another. In non-primitive objects, typecasting is done on objects which have …

  4. Typecasting of pointers in C - Stack Overflow

    Aug 10, 2016 · Typecasting of pointers in C Asked 13 years, 1 month ago Modified 4 years, 2 months ago Viewed 76k times

  5. What is the Use of TypeCasting in java - Stack Overflow

    Sep 2, 2016 · What is the Use of TypeCasting in java Asked 9 years, 5 months ago Modified 9 years, 5 months ago Viewed 2k times

  6. casting - typecasting to unsigned in C - Stack Overflow

    Nov 13, 2012 · typecasting to unsigned in C Asked 15 years, 11 months ago Modified 1 year, 6 months ago Viewed 20k times

  7. Typecasting in C# - Stack Overflow

    Aug 27, 2009 · Typecasting in C# Asked 16 years, 6 months ago Modified 6 years, 6 months ago Viewed 56k times

  8. string - Typecasting in Python - Stack Overflow

    Dec 22, 2008 · I need to convert strings in Python to other types such as unsigned and signed 8, 16, 32, and 64 bit ints, doubles, floats, and strings. How can I do this?

  9. c++ - Typecasting from int to long int - Stack Overflow

    Jun 24, 2016 · Typecasting from int to long int Asked 9 years, 8 months ago Modified 8 years, 5 months ago Viewed 21k times

  10. c - Typecasting int pointer to float pointer - Stack Overflow

    May 16, 2015 · You cannot cast a pointer to int to a pointer to float, and expect to get your value converted to the corresponding number in floating point representation. Casting a single value …