/
Write
Create Team Blog
Let's kick off a fresh team blog! Bring on the crew and let's get to publishing.
My FeedExploreDraftsBookmarksHackathons
Team BlogsNEW
AboutCareersOfficial Blog
Download App
Logos & Media

Trending tags
See all

© 2023 Hashnode

#CProgrammingLanguage

#cprogramminglanguage

Write An Article
4 Followers·6 Articles
HotNew
Ayush Raj
ayushrajj.hashnode.dev·Jan 20, 2023

C Programming: Number Guessing Game

#include<stdio.h> #include<stdlib.h> #include<time.h> int main(){ int x,num; srand(time(0)); num = rand()%20+1; int guess_count = 1; int guess_limit = 3; printf("WELCOME TO NUMBER GUESSING GAME :) \n"); printf(…

#CProgrammingLanguagecoding+3
10
Input && Output, Part2.