Reverse floyds triangle :-
#include<stdio.h> main() {
int i,j,k; i=7; for(j=3;j>=0;j--) { for(k=0;k<=j;k++) ...
Thursday, 30 August 2012
Program to print multiplication table
Program to print multiplication table :-
#include<stdio.h>main(){
int r,i,j,k; printf("Enter the number range: "); scanf("%d",&r);
for(i=1;i<=r;i++){
for(j=1;j<=10;j++) printf("%d*%d=%d ",i,j,i*j); printf("\n"); } return 0...
Posted by
ANANTHA
0
comments
Read More
Palindrome number
Palindrome number:-
#include <stdio.h> main() {
int n, n1, rev = 0, rem; printf("Enter any number: \n"); scanf("%d", &n); n1 = n; while (n > 0)
{ rem = n % 10; rev = rev * 10 + rem; n = n / 10; } if (n1 == rev)
{ printf("Given number is a palindromic...
Posted by
ANANTHA
0
comments
Read More
Check prime number up to n
Check prime number up to n:-
#include<stdio.h>main() { int num,i,count,n;
printf("Enter max range: ");
scanf("%d",&n);for(num = 1;num<=n;num++){
count = 0;for(i=2;i<=num/2;i++){
if(num%i==0){
count++;
break;
}
}if(count==0 && num!= 1) printf("%d ",num);
}return 0...
Posted by
ANANTHA
0
comments
Read More
Check prime number up to 100
Check prime number up to 100 :-
#include<stdio.h>
main(){
int n,i,count;for(n = 1;n<=100;n++){
count = 0;for(i=2;i<=n/2;i++){
if(n%i==0){
count++;break;
}
if(count==0 && n!= 1)printf("%d ",n);
}return 0;}...
Posted by
ANANTHA
0
comments
Read More
program for prime number
prime number:-
#include<stdio.h>int main(){int n,i,count=0;printf("Enter a number: ");
scanf("%d",&n);
for(i=2;i<=n/2;i++){if(n%i==0){
count++;break;
}
}if(count==0 && n!= 1) printf("%d is a prime number",n);elseprintf("%d is not a prime number",n);return 0;}
output:-
Enter a number:...
Posted by
ANANTHA
0
comments
Read More
program for fibonacci series
Program for Fibonacci series
#include<stdio.h>
main()
{
int a,b,c,i;
clrscr();
a=0;
b=1;
printf("fibonacci series is\n:%d\t%d\t",a,b);
for(i=0;i<5;i++)
{
c=a+b;
a=b;
...
Posted by
ANANTHA
0
comments
Read More
Tuesday, 28 August 2012
a program for "for loop"
A Program for "for loop"
Syntax :-
{
for( initialization;condition;incrementation/
...
Posted by
ANANTHA
0
comments
Read More
a program for do-while loop
A program for do-while loop
syntax :-
...
Posted by
ANANTHA
0
comments
Read More
loops
Loops of C-Programming language
Loop is a statement, it calls itself more than one time,
when the condition gets satisfied.
...
Posted by
ANANTHA
0
comments
Read More
Monday, 27 August 2012
program for swapping 2 numbers
Program for Swapping 2 Numbers
#include<stdio.h>
main()
{
...
Posted by
ANANTHA
0
comments
Read More
program for even/odd number
Program for even/odd Number
#include<stdio.h>
main()
{
int a;
...
Posted by
ANANTHA
0
comments
Read More
Sunday, 26 August 2012
Conditions of the variables
Conditions of the Variables
Condition is a comparison between variables.
Conditions are divided in to 5 types.
...
Posted by
ANANTHA
0
comments
Read More
Saturday, 25 August 2012
Friday, 24 August 2012
icon for c
After installation of C, you will find a desktop icon created.
Clicking on the TurboC++ icon opens the below window
...
Posted by
ANANTHA
0
comments
Read More
Subscribe to:
Posts (Atom)