integer in c code example
Example 1: c variable types
char 1 byte -128 to 127 or 0 to 255
unsigned char 1 byte 0 to 255
signed char 1 byte -128 to 127
int 2 or 4 bytes -32,768 to 32,767 or -2,147,483,648 to 2,147,483,647
unsigned int 2 or 4 bytes 0 to 65,535 or 0 to 4,294,967,295
short 2 bytes -32,768 to 32,767
unsigned short 2 bytes 0 to 65,535
long 8 bytes or (4bytes for 32 bit OS) -9223372036854775808 to 9223372036854775807
unsigned long 8 bytes 0 to 18446744073709551615
Example 2: 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) {
bool userUnderstands=true;
if(userUnderstands) {
exit(Success);
} else {
exit(FailedToEducate);
}
}
Example 3: declare integer c
int a = value;
Example 4: number in c
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int main()
{
int a, b;
float c, d;
scanf("%i %i", &a, &b);
scanf("%f %f", &c, &d);
int sum1 = a + b;
int sum2 = a - b;
float sum3 = c + d;
float sum4 = c - d;
printf("%i %i\n", sum1, sum2);
printf("%.1f %.1f", sum3, sum4);
return 0;
}
Example 5: how to create an int in c
int nameOfInt;