Thanks.
posidonofthecode
Posts
-
Password Program Help Please!!! -
Password Program Help Please!!!Hello everyone. The following code works perfectly. I would like to expand it so that the program can remember more that just one character as a password/input. #include main() { char pass; system("clear"); printf("\n\nWhat is the password?\n\n"); scanf("%c",&pass); if (pass == 'l') { system("clear"); printf("\n\nVery good.\n\n");} else {system("clear"); printf("\n\nVery bad!\n\n");}
-
Linux Text Slowdown- HELP PLEASEAWSOMENESS!!!PERFECT. I got it now. Adam Maras I am forever your servant. Thanks All for your help :-D :-D :-D :-D :-D :thumbsup:
-
Linux Text Slowdown- HELP PLEASEHey VuNic could you tell me why this is conflicting code and give me an alternative? :rolleyes:
-
Linux Text Slowdown- HELP PLEASEI will not be able to write code until I get home, school computers wont let me install compilers :^)
-
Linux Text Slowdown- HELP PLEASEHow can I slow down text with a 2-second timing in between letters? The following will not work: #include main() { /* And yes, sleep(2); actually takes up two whole seconds for some reason */ printf("\n\nH"); sleep(2); printf("e"); sleep(2); printf("y\n\n"); sleep(2); return 0; } /* For some reason this code FIRST executes the "sleep();" functions first. It then gives the output "Hey" all in one shot four seconds later. I am using Ubuntu if that helps, but I guess everyone else is using Windows because it seems to work on their computers. */
-
C HELP PLEASE!! [modified]Yes thats good but i want two second delay between each letter written, and going horizontally
-
C HELP PLEASE!! [modified]/* IM TRYING TO WRITE IT SO THAT I CAN SEE EACH LETTER AS IT IS BEING WRITTEN BY THE COMPUTER*/ /* Thanks :doh: in advance*/ #include main() { printf("\n\nH"); sleep(2); printf("e"); sleep(2); printf("y"); sleep(2); return 0; } /* Im trying to run it one letter at a time*/
modified on Monday, March 9, 2009 8:30 PM