When you have only one account that narrows down how much information you have given out the the internet world. At the same time this lines you up with specific info about where you might live.... etc...
When you create multiple accounts you have many different, lets say "connections", to the internet world. At the same time by having multiple accounts that can jumble up the information and make it harder for people to break into your computer, find where you live, etc...
Answer:
I'm better at C++, but I'm pretty sure this it:
/*C - Program to compare two strings
character by character.*/
#include<stdio.h>
int main(){
char str1[]="Hello";
char str2[]="Hello";
int len1=0, len2=0;
int i,isSame=0;
//calculate lengths
i=0;
while(str1[i++]!='\0') len1++;
i=0;
while(str2[i++]!='\0') len2++;
if(len1!=len2){
printf("Strings are not same, lengths are different\n");
return -1;
}
isSame=1;
for(i=0;i<len1;i++){
if(str1[i]!=str2[i]){
isSame=0;
break;
}
}
if(isSame)
printf("Strings are same.\n");
else
printf("Strings are not same.\n");
return 0;
}
```
#!/usr/local/bin/python3
import sys
def print_factorial( user_val ):
if( user_val < 1 ):
return( 1 )
else:
return( print_factorial( user_val - 1 ) * user_val )
if( __name__ == "__main__" ):
if( len( sys.argv ) == 2 ):
print( print_factorial( int ( sys.argv[ 1 ] ) ) )
else:
sys.stderr.write( "usage: %s <integer>\n" % sys.argv[ 0 ] )
exit( 0 )
```