#c-programming
Read more stories on Hashnode
Articles with this tag
#include<stdio.h> #include<stdlib.h> #include<time.h> // Q.1 Function to find average of three numbers. float avg(int a, int b, int c){ int sum = a +...
#include<stdio.h> #include<stdlib.h> #include<time.h> int main(){ srand(time(0)); int rand_num = rand()% 100 + 1; printf("Guess the number...
#include <stdio.h> int main(){ // Q.1 Program to print table. int table; printf("Which table?"); scanf("%d", &table); int i = 1; while(i<=10){...