1
News and Announcements / Re: Evilzone supports the "Reboot" film!
« on: November 07, 2012, 01:01:33 am »
I know somebody already said this but seriously, C:\Windows\system32> taskkill on a MacBook? Come on !
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
I would not agree with the camera. While the N8 does have a better camera (Nokia makes really nice phones), the iPhone tends to have better image quality than other smartphones regardless of pixel count. Images are grainier even on higher megapixel cameras.
Big point on not getting an iPhone is #2: Closed OS. You get almost no options for modification and no settings beyond simple notifications and appearances. Every time I use someone's iPhone I get frustrated by the inability to tweak anything worth tweaking.
#include <stdio.h>
#include <string.h>
int main()
{
char arr[3][128]={"chk","help","ext"};
char in[128];
int cm=1;
int i;
while(cm!=0)
{
printf(">Type a command and press return.\n");
printf(">> ");
scanf("%s",in);
for(i=0;i<3;i++)
{
cm=strmcp(in,arr[i]);
}
}
printf("%d\n", cm);
return 0;
}