The below code will generate a guessing game.
Logic :
Store a number in an variable.This will be the hidden number.If the user enters number which is greater or smaller then the hidden number then display an appropriate message.Limit the...
Home » Archives for May 2014
Teaase your Friends with this code
The following program will keep on printing the statement which is written in printf if the user is pressign any key you can send the .exe file of this code to your friends to fool them .
#include<stdio.h>
#include<conio.h>
void main()
{
char...
Write a C Program to print Hello world without using Semicolon
Semicolon is the statement terminator in compiler of C language. Our task is to write a piece of code to print Hello World! or any other line without using semicolons.
this can be done in the part of syntax which is free from bound of semicolons and...