#include<stdio.h>
main()
{
int i=3;
switch(i)
{
do
{
case 3: printf("\nhello");
case 2:printf("\n hmmmm");
break;
case 1:printf("wat");
break;
case 0: printf("hai");
}while(i--);
}
}-- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
