jituTechnology

jituTechnology

Tips for buying new Mobile phones

In this article I am going to write about the tips for buying new mobile phone. Many people regrets after buying their mobile phones. In this article I am going to write the most important things which you should keep in mind while buying new mobile phone. You can buy any mobile phone from low […]

read more

Practicable Gmail Tips

Since Google began its Gmail service, it has transformed the way we have interacted. Within a very short span of two years, Google has enhanced its customer base to more than 170 million users. Its user interface is most self-descriptive and you will find yourself at very ease with most of its functions, but still […]

read more

A Program to block and unblock USB Ports

Here is the source code of C programming language which will block the USB ports of the computer. In other ways u can say that this is a small virus program to disable USB ports of the computer. #include <stdio.h> #include <conio.h> void main() { system(“reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\USBSTOR \/v     Start \/t REG_DWORD \/d 4 \/f”); […]

read more

A program to display the reasult of cb^3/d^2

Here is the source code of C programming to display the reasult of cb^3/d^2 with simple input output operation. /* A program to display the reasult of cb^3/d^2    programmed by     Name: Jitendra Kumar Yadav    Roll: 16    date: 16th december 2010 */ #include <stdio.h> #include <conio.h> #include <math.h> void main() {     […]

read more

A program to read the value of two variables and compute sum, difference and product

In this post, i am going to write the C source code examples to the read the two variables provided by user and compute their sum difference and product. /*A program to read the value of two variables and compute sum, difference and product programmed by: Name: Jitendra Kumar Yadav Roll no: 16 Date: 30 […]

read more