About 2,810,000 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 the developer in the …

  2. What is the difference between type casting and type conversion in …

    Oct 29, 2010 · Typecasting is just taking a pen and writing "this is now a int" on the variable, conversion is actually convert the content to the desired type so the value keeps having a sense.

  3. Typecasting in C# - Stack Overflow

    Aug 27, 2009 · What is type casting, what's the use of it? How does it work?

  4. 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?

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

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

  6. Typecasting of pointers in C - Stack Overflow

    Aug 10, 2016 · Typecasting of pointers in C Asked 12 years, 11 months ago Modified 4 years ago Viewed 76k times

  7. 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 certain features of …

  8. JavaScript type casting - Stack Overflow

    Jan 23, 2013 · Not sure if this answers the question, but there is a new library for getting around all of Javascript's Typecasting weirdnesses: Typecast.js In a sentence, Typecast solves all the simple …

  9. Should I cast the result of malloc (in C)? - Stack Overflow

    8 The concept behind void pointer is that it can be casted to any data type that is why malloc returns void. Also you must be aware of automatic typecasting. So it is not mandatory to cast the pointer …

  10. Explicit type casting example in Java - Stack Overflow

    I have come across this example on http://www.javabeginner.com/learn-java/java-object-typecasting and in the part where it talks about explicit type casting there is one example which confuses me.