Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

chazog / iax0583

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit 5cdecfd3 authored 6 years ago by chazog's avatar chazog
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

Upload New File

parent acd86157 master
Hide whitespace changes
Inline Side-by-side
Showing with 22 additions and 0 deletions
  • Lab1/pract1.c
Lab1/pract1.c 0 → 100644
View file @ 5cdecfd3
#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;
}
This diff is collapsed. Click to expand it.
  • Write
  • Preview
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