Pages

Showing posts with label or. Show all posts
Showing posts with label or. Show all posts

Thursday, February 26, 2015

How To Close a Document or a Browser Quickly!

So... you know that moment when youre sitting at your computer promising your husband that youre doing work and he looks over and sees you shoe shopping?  Well... this quick little trick is just what you need if that happens to you all to frequently!

This tip is also great if you constantly open up programs on your Mac to find a million windows open from the last time you used the program!



Its a nice, simple trick... I hope you can find some use for it!
Read more »

Friday, February 13, 2015

C program to check whether a given number is even or odd


C program to check whether a given number is even or odd

#include<stdio.h>
#include<conio.h>

void main()
{
int n;
clrscr();
printf("Enter any number:");
scanf("%d",&n);

if(n%2==0)
printf("The number is even");
else
printf("The number is odd");

getch();
}
Read more »