Re: CENSUS of user's ages... (A82: )


[Prev][Next][Index][Thread]

Re: CENSUS of user's ages... (A82: )




Grant Stockly wrote:
> 
> I like the book "Teach Yourself C"
> 
> My birthday is 8 days before yours...
> 
> The cool thing about c is that you can program inline asm...asm and C in
> one program...
> 
> Example:
> 
> #include "studio.h"
> 
> main(char name)
> {
>         gets(name);
>         if(adam==name) printf("I guess you can use the computer...");
>         else busy();
> }
> busy()
> {
>         printf("Nope.  Not adam.../n/n");
>         busy()
> }

Resulting in:


? Adam
I guess you can use the computer...

or:

? Sean       (that's me)
Nope.  Not adam...


Follow-Ups: References: