jituTechnology

jituTechnology

Any Character is entered through the keyboard, write a program to determine whether the character entered is capital letter, small letter, a digit or a special symbol using ASCII values and built-in functions

This is the c source code for: Any Character is entered through the keyboard, write a program to determine whether the character entered is capital letter, small letter, a digit or a special symbol using ASCII values and built-in functions The Following table shows the range of ASCII values Characters                          ASCII Values A-Z                                         65-90 a-z                                          […]

read more

A year is entered through the keyboard, write a program to determine whether it is leap or not

This is the c source code for: A year is entered through the keyboard, write a program to determine whether it is leap or not /* A program to find out whether the year is leap or not*/ #include <stdio.h> #include <conio.h> void main() {      int year;    printf(“Enter the value of year:”);    […]

read more

Some useful commands’ shortcut

Normally you would not associate windows with commands. For everything, you have to navigate through a couple of menu using the mouse before getting to the concerned window/utility/tool etc. but windows does come with commands that give you quick access to tools for configuring and fixing our computer. Some of these are very helpful if […]

read more

How to modify Windows 7 Search Index

Windows 7 uses a search index for faster searches on the computer. Instead of looking through your entire hard disk for a file, Windows first just scans the index and saves you a lot time. You can notice the difference when searching in locations that are not index. By default, only your Users folder and […]

read more

Change the location of your personal folders

Suppose, if you frequently format your computer or reinstall your operating system, or if your primary hard drive space is very low and it has not enough space for all your media and documents, you will obviously like to change location of your personal folder to the separate partition. This trick will also help you […]

read more