Answer:
Simple Mail Transfer Protocol (SMTP) is the standard protocol for sending emails across the Internet.
some advantages of video conferencing include:
• you can talk no matter how far you are from the person
•you won’t have to go somewhere to talk
•there is no cost if you need to travel far
Uuuhh how bouut Walmart or anywere u want really
True, i have done this before in my presentation slides
Answer:
Check the explanation
Explanation:
In C, int requires 4 butes to sotre a integer number. that means it requires 4*8 = 32 bits. The maximum number can be stored using 32 bits is
The first digit is used for sign. decimal equivalent to this number can be computed as
=
=
That means int can store a up to 2147483646.
Testing with C code
#include<stdio.h>
int main()
{
int a = 2147483647; // a with max number
printf("%d\n",a);// printing max number
a = a+1;// adding one to the number
printf("%d\n",a);// printing the number after adding one
return 0;
}
THE OUTPUT
$ ./a.out
2147483647
-2147483648