Integer Types
double myNum = 19.99D;
Console.WriteLine(myNum);
Integer Types
double myNum = 19.99D;
Console.WriteLine(myNum);
what is a long long int in c
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#define FailedToEducate 101
#define Success 400
int main(void) {
/*
A long int is:
32-bit compiler:
MIN: -2,147,483,648
MAX: 2,147,483,647
unsigned MAX: 4,294,967,295
64-bit compiler:
MIN: -9,223,372,036,854,775,808
MAX: 9,223,372,036,854,775,807
unsigned MAX: 18,446,744,073,709,551,615
Therefore...a long int will either be
-2,147,483,648 and 2,147,483,647 for a 32-bit compiler
or -9,223,372,036,854,775,808 and
9,223,372,036,854,775,807 for a 64-bit compiler,
whilst a long long int will just be
-9,223,372,036,854,775,808 and
9,223,372,036,854,775,807
I hope this made sense!
*/
bool userUnderstands=true;
if(userUnderstands) {
exit(Success);
} else {
exit(FailedToEducate);
}
}
Integer Types
int myNum = 100000;
Console.WriteLine(myNum);
Integer Types
float myNum = 5.75F;
Console.WriteLine(myNum);
Integer Types
long myNum = 15000000000L;
Console.WriteLine(myNum);
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