Commit 5cdecfd3 by chazog

Upload New File

parent acd86157
Showing with 22 additions and 0 deletions
#include <stdio.h>
int main ()
{
char name[100];
int code;
printf("Please enter name and code\n");
scanf("%s", name);
scanf("%d", &code);
if( (code > 99999) && (code < 1000000)){
printf("hello! and welcome to coding %s, %d", name, code);
}else{
printf("nice try buster, but i don't think you have got a code\a");
}
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment