Top "Int" questions

Common datatype in many programming languages for representing a whole number.

Convert Int to String in Swift

I'm trying to work out how to cast an Int into a String in Swift. I figure out a workaround, …

string casting int converter swift
Java: parse int value from a char

I just want to know if there's a better solution to parse a number from a character in a string (…

java parsing char int parseint
What is the difference between const int*, const int * const, and int const *?

I always mess up how to use const int*, const int * const, and int const * correctly. Is there a set …

c++ c pointers int constants
Converting String to Int with Swift

The application basically calculates acceleration by inputting Initial and final velocity and time and then use a formula to calculate …

ios swift int uitextfield
How to convert char to integer in C?

Possible Duplicates: How to convert a single char into an int Character to integer in C Can any body tell …

c char int
How do you append an int to a string in C++?

int i = 4; string text = "Player "; cout << (text + i); I'd like it to print Player 4. The above is obviously …

c++ int stdstring
Java Array Sort descending?

Is there any EASY way to sort an array in descending order like how they have a sort in ascending …

java arrays sorting int
How to check if an int is a null

I have an object called Person. it has several attributes in it; int id; String name; i set a person …

java int
What is the size of column of int(11) in mysql in bytes?

What is the size of column of int(11) in mysql in bytes? And Maximum value that can be stored in …

mysql types int
Convert boolean to int in Java

What is the most accepted way to convert a boolean to an int in Java?

java casting boolean int