All pastes #2049694 Raw Edit

Miscellany

public text v1 · immutable
#2049694 ·published 2011-04-23 13:05 UTC
rendered paste body
/***************************************

:::::::::      :::     ::::::::::: 
:+:    :+:   :+: :+:       :+:     
+:+    +:+  +:+   +:+      +:+     
+#++:++#:  +#++:++#++:     +#+     
+#+    +#+ +#+     +#+     +#+     
#+#    #+# #+#     #+# #+# #+#     
###    ### ###     ###  #####      


***************************************/
#include <stdio.h>
 main()
{ 

char c;
int messx;
int blowx;


	 
  printf (" \n \n PROBLEM RESOLUTION \n \n ");
  printf (" Is it working ? \n");
  printf ("     (y/n) ?\n \n");
  	{
	c = getchar();
			
		if (c == 'n')
			goto messx;
		else
	if (c == 'y')
		goto blowx;
		}


/* dont mess wiht it  */
	messx:
		printf (" Did you mess with it ? \n     (y/n) ?\n");
	c = getchar();
	
		if (c == 'n')
			goto blowx;
  		if (c == 'y')
	printf("hey \n");
		
		
/******** blowx *******/
	blowx:
	printf("Will it blow in your hands \n");
	

}