Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Flipping Penis Burgers
SUBMITTED BY:
Guest
DATE:
Nov. 25, 2014, 4:26 p.m.
FORMAT:
Text only
SIZE:
293 Bytes
Raw
Download
Tweet
HITS:
1002
Go to comments
Report
void flip(char* str)
{
char *p1=str;
char *p2=str+1;
char temp;
while(p1&&p2)
{
temp=*p1;
*p1=*p2;
*p2=temp;
p2+=2;
p1++;
}
}
void main()
{
char* str="good";
flip(str);
printf("%s",str);
getch();
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus