Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
Resource icon

Simple Number Guessing Program

[CODE lang="c" title="number.c"]#include <stdio.h>

int main(void) {
int usr_num = 0; // The Number that the User inserts
int app_num = 56; // The Number that the Program is thinking of

// Welcome Message
printf("Hey. I'm...
You do not have permission to view the full content of this resource. Log in or register now.
Author
Dan-Kode
Views
838
First release
Last update
Rating
3.00 star(s) 1 ratings

Latest reviews

Line 18: printf("Sorry. That wasn't right. The Answer was: %d\n", app_num);
Back
Top Bottom