string
int mynumber = 10;
double mydecima = 10.1405;
string mytext = "10.1405 hello true";
bool myon_off = true;
char mysinglecharacter = 't';
string
int mynumber = 10;
double mydecima = 10.1405;
string mytext = "10.1405 hello true";
bool myon_off = true;
char mysinglecharacter = 't';
String
/*
*NOTICE: the 2 variables refer to one place in memory no 2 different,
because both of them have the same value.
*/
String str1 = "Hello";
String str2 = "Hello";
/* if I changed value of each one will not share the common place. */
String str2 = "HELLO";
/* Now, both of them has different place in memory */
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us