#include // What will this code do? int main(void) { goto sleep; printf("Please pay close attention\n"); sleep: printf("You are getting sleepy\n"); goto sleep; printf("Please wake up now!"); return 0; }