Magic Square Generator By C Programming Add Comment Edit Magic Square Generator By C Programming Magic Square is a kind Of Square where the Summation of numbers i... Read More
C++ Examples Add Comment Edit Simple Calculator Program In C++ #include <iostream> using namespace std; int main() { int a,b; char ch; cout<<... Read More
UVA Easy Problem's Solution Add Comment Edit UVA 100 3n+1 #include <bits/stdc++.h> using namespace std; int main() { long long int i,j,k,l,n,m,c,maxi,a,b; ... Read More
C Programming Examples- Lab 1&2 Add Comment Edit 1. Write a C Program that read temperature in Celsius and Display in Farenheit #include <stdio.h> int main() { double c,f; ... Read More
Tic-Tac-Toe Game By C Programming Add Comment Edit Tic-Tac-Toe Game By C Programming #include<stdio.h> #include<conio.h> #include<stdlib.h> #include <windows.h> int ... Read More
Snake Game By C Programming Add Comment Edit Snake Game By C Programming #include <stdio.h> #include <time.h> #include <stdlib.h> #include <conio.h> #include... Read More
Day Teller Add Comment Edit How To Make a Day Teller Application In C Language #include <stdio.h> #include <conio.h> int main() { int date,month,y... Read More