Friday, 27 July 2012
Thursday, 5 July 2012
SEO book
Posted by Money Man at 00:32HTML frames
Posted by Money Man at 00:27Learn HTML
Posted by Money Man at 00:23Solution of Engineering Electromagnetics 6th edition by William
Posted by Money Man at 00:12Engineering Electromagnetics 6th edition by William H. hayt
Posted by Money Man at 00:09Solution Of thermodynamics 6th edition
Posted by Money Man at 00:02Wednesday, 4 July 2012
Tuesday, 3 July 2012
Physics for scientist and engineers
Posted by Money Man at 09:29
Dear Students, You can download your physics book from here.Just Click the below link.
http://www.mediafire.com/?4wpzes1h3cuuabl
http://www.mediafire.com/?4wpzes1h3cuuabl
C Programming: Let Us C by Yashwant
Posted by Money Man at 09:27
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
http://www.mediafire.com/?r4pwafy2f533l2u
C The Complete Reference
Posted by Money Man at 09:24
You can download another helpful C programming book from the below link.
http://www.mediafire.com/?d5xz5d0k516o5yg
http://www.mediafire.com/?d5xz5d0k516o5yg
Electric Machinery 6th Edition
Posted by Money Man at 09:21
Dear Students, You can download your Electric Machinery book from here.Just Click the below link.
http://www.mediafire.com/?s1kgtu8duquwxrm
http://www.mediafire.com/?s1kgtu8duquwxrm
Solution Manual Electric Machinery 6th Edition
Posted by Money Man at 09:19
Dear Students, You can download your Electric Machinery SOLUTION book from here.Just Click the below link.
http://www.mediafire.com/?ddcd14cohwyn44z
http://www.mediafire.com/?ddcd14cohwyn44z
Discrete Mathematics with Applications Sussanna
Posted by Money Man at 09:14
You can download your helpful Discrete Mathematics book from the below link.
http://www.mediafire.com/?uc7tvwddrgeo19o
http://www.mediafire.com/?uc7tvwddrgeo19o
Discrete Mathematics for Computer Scientists
Posted by Money Man at 08:58
You can download your Discrete Mathematics for Computer Scientists book from here.Click the below link.
http://www.mediafire.com/?tq01guqhg1q880t
http://www.mediafire.com/?tq01guqhg1q880t
Numerical Analysis
Posted by Money Man at 08:56
You can download free Numerical Analysis book from here.Just click the below link.
http://www.mediafire.com/?ogc35h892ck5cft
http://www.mediafire.com/?ogc35h892ck5cft
Signals And Systems
Posted by Money Man at 08:54
You can download Signals And System book from here.Just click the below link.
http://www.mediafire.com/?22a5fzjjjf9ln8f
http://www.mediafire.com/?22a5fzjjjf9ln8f
Digital Logic Design 3rd Edition
Posted by Money Man at 08:48
Dear Students, You can download your Digital Logic Design (DLD) book from here.Just click the below link.
http://www.mediafire.com/?ajj14nd01njl4bt
http://www.mediafire.com/?ajj14nd01njl4bt
Solution Manual Digital Logic Design
Posted by Money Man at 08:32
Dear Students, You can download your Solution manual Digital Logic Design book from here.Just click the below link.
http://www.mediafire.com/?maow6n8b5gom9f3
C program to add two numbers
Posted by Money Man at 05:05
#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
#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
Subscribe to:
Posts (Atom)
0 comments: