Template Information

Showing posts with label Programming. Show all posts

Tuesday, 3 July 2012

C Programming: Let Us C by Yashwant

This book is written by the Indian author.It is very useful and very easy to understand.You can download  C programming book  from the below link.
http://www.mediafire.com/?r4pwafy2f533l2u


C The Complete Reference

 You can download another helpful C programming book from the below link.
http://www.mediafire.com/?d5xz5d0k516o5yg


C program to add two numbers

#include<stdio.h>
#include<conio.h>
void main()
{
        int num_1,num_2,ans;
        printf("Enter the value of num_1 = ");
        scanf("%d",&num_1);
        printf("\nEnter the value of num_2 = ");
        scanf("%d",&num_2);
        ans= num_1 + num_2;
        printf("\nthe sum of two number is = %d",ans);
        getch();
}
Sample Output:
Enter the value of num_1 =8

Enter the value of num_2 =9

the sum of two number is = 17