Note: You are free to download, use, edit, update and rebuild the program and source codes downloaded from here, But Please don’t forget to give considerable credits to Subash Chandra Poudel and electronicsprogramming.com if you do so. A Paint Program is a program which allows you to draw pictures and symbols into the screen. Here [...]
VNC
Virtual Network Computing AT&T’s VNC is one of the most popular PC-controlling software around, and that is not necessarily because it’s free. It is completely platform-independent, so while the local machine runs on Windows, the remote machine can have a different architecture, say Unix. VNC is available under the GNU Public License, which means the [...]
Statements in C program
A statement causes the computer to carry out some action .An expression statement consists of an expression followed by semicolon. A statement is an executable part of the program. Categorixed of statements in C are; 1. Expression statements. (x=5;, z=z-y;) 2. Compound statements. (int i=5,j=1; , int area,voloum,price;,sum=a+b;,product=a*z;) 3.Selection statements. (if, if…..else,switch) 4.Iterative statements. ( [...]
Expression
An expression represents a single data item; such as a number or character. The expression is a combination of constants, variables, operators and function. Expression can be relational logical and arithmetic. For example; A+C This is an arithmetic operation. C=Y+G Here is the uses of two different operators i.e. (=, +) P>B Relational expression between [...]
Intrinsic

Conduction In Intrinsic S/C When an external field is applied to pure s/c, the conduction through the s/c is by both free electron and holes. The free electron in the conductive band move towards the positive terminal of the battery. As the holes reach the positive terminal B , the electron reaching combines with holes [...]
Conditional operators
Conditional operator is only th termany operator . i.e. it requires three operand .The general form of conditional operator (?:) is..
expression1?expression2:expression3
if expression1 is true, then the value of whole expression is the value of expression2 other wise the value the value of whole expression is the value of expression3……..
Continue reading to find more…………..
Sizeof
The unary operator which gives the size of its operand interms of bytes is called sizeof operator . The operand may be variable,constant or any data types .This example sizeof (int) gives the bytes occupied by the int data-types i.e. 2. lets see this example to understand the use of sizeof operator. #include<stdio.h> int main() [...]
UNLOCK THE HIDDEN CODES OF NOKIA

Have you have forgot the security code of your Nokia Mobile,Or you want to reset the original setting of your mobile but you don’t have the security code.No pIroblem here are most populer codes to unlock the hidden secret of the Nokia Mobile/Cell Phone.There are lots of secert code made by nokia to by-pass the security and to reset it original setting.Here are some of them.
Continue reading to find more……….
An overview of C program

The documentation section consists of a set of comment lines giving the name of the program, the author and other details, which the programmer would like to use later. The link section provides instructions to the compiler to link functions from the system library. The definition section defines all symbolic constants.
There are some variable that are used in more than one function. Such variable are called global variables and are declared in the global declaration section that is outside of all the functions………………
Continue reading to find more…………..