Toggle navigation
Collections
Fun
Jokes
Fortune
Photo
Nicknames
Blog
ﻮﺑﻻگ
Iran
Char *c[]= {"ENTER", "NEW", "POINT", "FIRST", }; Char **cp[]= {c + 3, C + 2, C + 1, C}
Home
›
Fortune Cookies
›
Miscellaneous Collections
char *c[]= {"ENTER", "NEW", "POINT", "FIRST", };
char **cp[]= {c + 3, c + 2, c + 1, c};
char ***cpp= cp;
main()
{
printf("%s", **++cpp);
printf("%s ", *--*++cpp + 3);
printf("%s", *cpp[-2] + 3);
printf("%s\n", cpp[-1][-1] + 1);
}
Related:
Char *p="char *p=%c%s%c;main(){printf(p,34,p,34);}";main(){printf(p,34,p,34);}
char c[99],s[]="char c[99],s[]=@@@;main(){strcpy(c,s)
[15]=34;s[16]=0;s[17]=34 ;printf(s);printf(c);puts(&s[17])...
printf("to C or not to C...that is the question.\n")
Obfuscated C Contest n. (in full, the `International Obfuscated C Code Contest', or IOCCC) An annual contest run since 1984 over Usenet by Landon Curt Noll and friends.
The overall winner is whoever produces the most unreadable, creative, and bizarre (but working) C program...
main(int c, char **v){if(c = *v[1]++)main(c, v), putchar(c);}
1] If at all possible, don't. Let someone else do it.
2] Change majors. 3] Insert/remove blank lines at random spots, re-compile, and execute....
printf("Hello world "); -- C Error #012
print v. To output, even if to a screen. If a hacker says that a program "printed a message", he means thi
if he refers to printing a file, he probably means it in the conventional sense of writing to a hardcopy device (compounds like `print job' and `printout', on the other hand, always refer to the latter)....
percent-S /per-sent' es'/ n. [From the code in C's printf(3) library function used to insert an arbitrary string argument] An unspecified person or object.
I was just talking to some percent-s in administration." Compare random....