coderz.py

Keep Coding Keep Cheering!

Program to Find ASCII Value of a Character

In C++ programming, a character variable stores an ASCII value (an integer number between 0 and 127) rather than the character itself. This is known as the ASCII value. For instance, the ASCII value of ‘A’ is 65. Therefore, to find the ASCII value of the given Character, we make use of the concept of Type-Casting. […]

November 5, 2022 | C++ | No comments

Type casting in Java

In Java, type casting is a method or process for manually and automatically converting one data type into another. The compiler performs the automatic conversion, while the programmer performs the manual conversion. In this section, we’ll go over typecasting and the various types with examples. Types of Type Casting There are two types of typecasting: […]

April 30, 2022 | Java | No comments

Advertisement