What is  Else IF Statement
What is Else IF Statement

What is  Else IF Statement? Else if statement:-                      The "else if "statement in C is generally used when need to compare more then one condition. Example:-               &nbs...

Read more »
Feb 27, 2016


What is IF else Statement.
What is IF else Statement.

What is IF else Statement? Ans:-        IF else Statement:-                                                C language also lets one choose between two statem...

Read more »
Feb 27, 2016


What is IF Statement.
What is IF Statement.

What is IF Statement? Ans:         IF Statement:-                                  If statement gives the user the choice of execuated tp true or skipping it is the expression is evaluated to...

Read more »
Feb 27, 2016


Convert Temperature Fahrenheit to centigrade
Convert Temperature Fahrenheit to centigrade

A program Convert Temperature Fahrenheit to centigrade 1 2 3 4 5 6 7 8 9 #include<stdio.h> int main() { float ftemp,ctemp; printf("Enter temperature of city in fahrenheit"); scanf("%f",&ftemp); ctemp=(5.0/9.0)*(ftemp-32); printf("\nThe given temperat...

Read more »
Feb 27, 2016


Two location interchange its contents
Two location interchange its contents

A Program two location interchange its contents. 1 2 3 4 5 6 7 8 9 10 #include<stdio.h> int main() { int a,b; printf("Enter a value of a="); scanf("%d",&a); printf("\nEnter value of b="); scanf("%d",&b); printf("\n a=%d\...

Read more »
Feb 27, 2016


 Input two nob from user print Sum.product,division and some of square(a^2+b^2
Input two nob from user print Sum.product,division and some of square(a^2+b^2

Input two nob from user print Sum.product,division and some of square=>a^2+b^2. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #include<stdio.h> int main() { int a,b; printf("Enter a value\n"); scanf("%d",&a); printf("Enter 2nd value\n"); scanf(&qu...

Read more »
Feb 27, 2016


Input distance in km from user convert it into Meter
Input distance in km from user convert it into Meter

Input distance in km from user convert it into Meter 1 2 3 4 5 6 7 8 9 10 11 12 #include<stdio.h> int main() { float km,m; printf("Enter value\n"); scanf("%f",&km); m=km*1000; printf("Km=%f\n",km); printf("Meters=%f",m); } ...

Read more »
Feb 27, 2016


A program 356 value print Reversal i.e 653
A program 356 value print Reversal i.e 653

A program 356 value print Reversal i.e 653:- 1 2 3 4 5 6 7 8 9 10 11 12 13 #include<stdio.h> int main() { int n,a,b; n=356; printf("n=%d\n",n); a=n%10; n=n/10; b=n%10; n=n/10; printf("n=%d%d%d",a,b,n); }            ...

Read more »
Feb 27, 2016


Using % operator
Using % operator

A program Using % operator 1 2 3 4 5 6 7 8 9 10 11 12 #include<stdio.h> int main() { int n,a,b; n=456; printf("n=%d\n",n); a=n/100; n=n%100; b=n/10; n=n%10; printf("n=%d%d%d",n,b,a); } If you face any problem so contact me Thank you  Co...

Read more »
Feb 26, 2016


Swap without using third variable
Swap without using third variable

A program swap without using third variable 1 2 3 4 5 6 7 8 9 10 11 12 13 #include<stdio.h> int main() { int a,b; a=4; b=6; printf("a=%d\nb=%d\n",a,b); printf("---------------\n"); a=a+b; b=a-b; a=a-b; printf("a=%d\nb=%d",a,b); } ...

Read more »
Feb 26, 2016


Swap using third variable 
Swap using third variable

A program Swap using third variable  1 2 3 4 5 6 7 8 9 10 11 12 13 14 #include<stdio.h> int main() { int a,b,t; a=4; b=6; printf("a=%d\nb=%d\n",a,b); printf("---------------\n"); t=a; a=b; b=t; printf("a=%d\nb=%d",a,b); } I...

Read more »
Feb 26, 2016


Convert it into c program Convert it into c program "a^3+b^3+c^3+ab"

A program Convert it into c program "a^3+b^3+c^3+ab" 1 2 3 4 5 6 7 8 9 #include<stdio.h> int main() { int a,b,c; a=2; b=6; c=8; printf("a^3+b^3+c^3+ab=%d",a*a*a+b*b*b+c*c*c+a*b); } If you face any problem so contact me Thank you  contact :- https:...

Read more »
Feb 26, 2016


Convert it into c program Convert it into c program "a^2 + b^2 +ab =a*a+b*b+a*b".

A program Convert it into c program "a^2 + b^2 +ab and display its result. 1 2 3 4 5 6 7 8 #include<stdio.h> int main() { int a,b; a=2; b=6; printf("a^2+b^2+ab=%d",a*a+b*b+a*b); } If you face any problem so contact me Thank you  Contact :- https://www...

Read more »
Feb 26, 2016


Convert it into c program Convert it into c program "a+b^2 c=a+(b*b)*c"

A program Convert it into c program "a+b^2 c=a+(b*b)*c" 1 2 3 4 5 6 7 8 9 10 #include<stdio.h> int main() { int a,b,c,s; a=2; b=6; c=8; s=a+b*b*c; printf("a+(b*b)*c=%d",s); }   2:A program Convert it into c program "a+b^2 c=a+(b...

Read more »
Feb 26, 2016


Input base and power is 4 print output
Input base and power is 4 print output

           A program Input base and power is 4 print output. 1 2 3 4 5 6 7 8 9 10 #include<stdio.h> int main() { int b,p,m; printf("Enter base\n"); scanf("%d",&b); p=4; m=b*b*b*b; printf("%d^%d=%d",b,p,m); } ...

Read more »
Feb 26, 2016


2^4=? print output
2^4=? print output

A program that  2^4=? print output on Screen 1 2 3 4 5 6 7 8 9 #include<stdio.h> int main() { int b,p,m; b=2; p=4; m=b*b*b*b; printf("%d^%d=%d",b,p,m); }                               &nbs...

Read more »
Feb 26, 2016


Multiplication of three Variable
Multiplication of three Variable

A Program Multiplication of three Variable and result print on Screen: 1 2 3 4 5 6 7 8 9 10 #include<stdio.h> int main() { int a,b,c,m; a=7; b=6; c=4; m=a*b*c; printf("%d*%d*%d=%d",a,b,c,m); }                 ...

Read more »
Feb 26, 2016


Dev C++ v 5.11
Dev C++ v 5.11

Dev C++ Free Software teachcoding.blogspot.com Dev-C++ is a full-featured IDE for the C,Cpp programming language. It uses Mingw port of GNU Compiler Collection Dev c++ Features are Follows : Support GCC-based compilers Integrated debugging (using GDB)  Project Manager  Customiz...

Read more »
Feb 26, 2016


Input Roll,Marks,Grade and print on screen
Input Roll,Marks,Grade and print on screen

A program Input Roll,Marks,Grade and print on screen: 1 2 3 4 5 6 7 8 9 10 11 12 13 #include<stdio.h> int main() { int Rollno; float Marks; char Grade; Rollno=30; Marks=50.6; Grade='D'; printf("Rollno=%d\n",Rollno); printf("Marks=%f\n",Marks); prin...

Read more »
Feb 24, 2016


Calculate and print Calculate and print "6+4=10"

Calculate and print "6+4=10" result on screen 1 2 3 4 5 6 7 8 #include<stdio.h> int main() { int a,b,s; a=6; b=4; s=a+b; printf("%d+%d=%d",a,b,s); } Best of Luck

Read more »
Feb 24, 2016


Calculate and print Calculate and print "6*4-9=?"

A program Calculate and print "6*4-9=?" the result on screen. 1 2 3 4 5 6 7 8 #include<stdio.h> int main() { int a,b,c; a=6; b=4; c=9; printf("%d*%d-%d=%d",a,b,c,a*b-c); } Best of Luck

Read more »
Feb 24, 2016


Enter any two nob and print
Enter any two nob and print

Enter any two nob and print Credit goes to: Kamran Gee 1 2 3 4 5 6 7 8 #include<stdio.h> int main() { int a,b; printf("Enter two Number "); scanf("%d %d",&a,&b); printf("\na= %d ,b= %d",a,b); }            ...

Read more »
Feb 24, 2016


Sum,Difference,Multiplication all in one
Sum,Difference,Multiplication all in one

                    Sum,Difference,Multiplication all in one 1 2 3 4 5 6 7 8 9 10 #include<stdio.h> int main() { int a,b; a=6; b=4; printf("%d+%d=%d\n",a,b,a+b); printf("%d-%d=%d\n",a,b,a-b); printf(...

Read more »
Feb 24, 2016


Program Find Difference of variable
Program Find Difference of variable

Find Difference of two variable: 1 2 3 4 5 6 7 8 #include<stdio.h> int main() { int a,b; a=6; b=2; printf("%d-%d=%d",a,b,a-b); } Find Difference of three variable: 1 2 3 4 5 6 7 8 9 10 #include<stdio.h> int main() { int a,b,c,d; a=8; b=6; c=4; ...

Read more »
Feb 24, 2016


C program using C program using "\n"

C program using "\n" 1st Program:- 1 2 3 4 5 #include<stdio.h> int main() { printf("*\n**\n***\n****"); } 2nd Program:- 1 2 3 4 5 6 7 8 9 10 #include<stdio.h> int main() { printf("****\n"); printf("Hello\n"...

Read more »
Feb 22, 2016


C programs List
C programs List

In this post you can easily find C programs in this list you can Select Program and then source Code are there if any program are not there then post a comment with name i will update in 24 hour INSHALLAH        Programs List(Click on any pr...

Read more »
Feb 22, 2016


Request Zone
Request Zone

Request zone Here you can request for C program,C++ program,Opp,Algorithm,Data structure,Also Software,android games,Apps,Books and much more via a post comment. your Request will upload in 24 hour. INSHALLAH. Regards,                   &nb...

Read more »
Feb 21, 2016


Cue Club (full version) free download
Cue Club (full version) free download

  Cue Club (full version) free download Cue Club Cheat Codes: Enter any Cue Club chat room and type these fun cheats into the dialogue box. Re-enter the cheat to turn it off. Note, these will not work with the trial version. --------------------- ccc>gravity {...

Read more »
Feb 16, 2016


Internet download manager with Register Free Download
Internet download manager with Register Free Download

For Latest Version IDM Download Click here Download latest version Older version Older Version IDM 6.27: Build 3 olderVersion IDM 6.28:build 10 Click here to Download                              ...

Read more »
Feb 14, 2016


What's Algorithm? 
What's Algorithm?

What's Algorithm?  An algorithm is a sequence of well-defined instructions for calculating a function that terminates in a well-defined ending state.Algorithm is step by step procedure to solve a problem is knows as Algorithm

Read more »
Feb 09, 2016
 

Protected

Protected by Copyscape
 
Learn Programming © 2017. All Rights Reserved. Shared by WpCoderX
Top