Bhuwan Sharmabhuwan.hashnode.dev·Sep 22, 2024C Tutorial -4 Guess the number#include<stdio.h> #include<stdlib.h> #include<time.h> int main(){ srand(time(0)); int rand_num = rand()% 100 + 1; printf("Guess the number sir!\n"); int user; scanf("%d", &user); int attempts = 1; while(user != rand_num){ if(user>rand_num){ printf("L...DiscussC code