Answer:
c to help build the internets infrastrucuter
Explanation:
Answer:
cooperate society
Explanation:
A cooperative society is a voluntary association that started with the aim of the service of its members.
There are 6 octects ( 8 bit numbers ) in a MAC address, so there's 256^6 possible addresses.
Answer:
#include<iostream>
using namespace std;
int main (){
int n1, n2;
cout<<"Enter 1st number";
cin>>n1;
cout<<"Enter 2nd number";
cin>>n2;
if(n1<n2){
cout<<"The 1st number is the smallest"<<endl<<" is= "<<n1;
}
else{
cout<<"The 2nd number is the smallest"<<endl<<" is= "<<n2;
}
}
return 0;