• About
  • Sitemap
  • Contact
  • Disclaimer
MENU

Program-Wiki

Recent News

DMCA.com Protection Status
Menu
  • Kategori
    • Blogger
    • Web Design
    • Portfolio
  • Blogger
  • Galeri Foto
  • Info Menarik
  • Manga
  • Tutorial
  • Video
All post
Program to Check Whether Number is Perfect Or Not

Program to Check Whether Number is Perfect Or Not

17:20 Add Comment
Program to Check Whether Given Number is Perfect Or Not ? #include<stdio.h> int main() { int n,i=1,sum=0; printf("nEnter...
C Progranm to Check for Armstrong Number

C Progranm to Check for Armstrong Number

17:19 Add Comment
Armstrong Number : When Sum of Cubes of Digits Of Number Equal to Same Given Number then the number is called as...
Check Whether Number is Prime or not

Check Whether Number is Prime or not

17:18 Add Comment
#include<stdio.h> int main() { int num,i,count=0; printf("nEnter a number:"); scanf("%d",&num); ...
Check Whether Given Number is Palindrome or Not ????

Check Whether Given Number is Palindrome or Not ????

17:18 Add Comment
Check Whether Given Number is Palindrome or Not ???? #include<stdio.h> #include<string.h> int main() { int...
C Program To Print First 10 Natural Numbers

C Program To Print First 10 Natural Numbers

17:16 Add Comment
Using For Loop #include<stdio.h> #include<conio.h> void main() { int i=1; clrscr(); for(i=1;i<=10;i++) ...
C Program to generate the Fibonacci Series starting from any two numbers

C Program to generate the Fibonacci Series starting from any two numbers

17:15 Add Comment
#include<stdio.h> #include<conio.h> int main() { int first,second,sum,num,counter=0; clrscr(); printf("Enter...
Pages 5 of 10 FirstPrev34567NextLast
Subscribe to: Posts (Atom)

Paling Dilihat

  • C incrementing pointer
    C incrementing pointer
    Incrementing Pointer : Incrementing Pointer is generally used in array because we have contiguous memory in array and we know the conten...
  • C Program to find exponent Power Series !!
    Program : A program to evaluate the power series x2 x3 xn ex = 1 + x + --- + --- + ..... + ---- , 0 < x...
  • C program to reads customer number and power consumed and prints amount to be paid
    An electric power distribution company charges its domestic consumers as follows Consumption Rate of Units Charge --------------...
  • C Program to Calculate Area of Circle
    C Program for Beginners : Area of Circle Shape  : Circle     Formula :  Π * r * r   Definition  : Ellipse  in which the two axe...
  • C Program to Solve Second Order Quadratic Equation
    Program : To obtain solution of second order quadratic equation # include < stdio.h > # include < conio.h > # include < ...
  • C Program to Check whether Matrix is Magic Square or Not ?
    C Program to Check whether entered matrix is magic square or not ? What is Magic Square : A magic square is a simple mathematical  gam...
  • Coolest Windows & Keyboard Shorcuts
    Coolest Windows & Keyboard Shorcuts
    W orking professionally with a computer has their hands on the keyboard most of the time. Reaching for the mouse can be an annoying dist...
  • C program to calculate sum of Upper Triangular Elements in C
    C program to calculate sum of Upper Triangular Elements in C
    # include < stdio.h > # include < conio.h > void main ( ) { int i , j , a [ 10 ] [ 10 ] , sum , m , n ; /* m - Numbe...
  • C Program to Print Square of Each Element of 2D Array Matrix
    C Program : C Program to Print Square of Each Element of 2D Matrix # include < stdio.h > # include < conio.h > # define M...
  • C Program to Calculate Area of Square
    C Program for Beginners : Area of Square Shape  : Square     Formula  :  side * side Definition  : A plane rectangle with  four...
  • ▼ 2014 (57)
    • ▼ April (57)
      • Get FREE 90 Days Trial of Kaspersky Internet Secur...
      • Coolest Windows & Keyboard Shorcuts
      • C program to calculate sum of Upper Triangular Ele...
      • C Program to find addition of Lower Triangular Ele...
      • Program to find Transpose of Given Square Matrix
      • C Program to Check whether Matrix is Magic Square ...
      • C Program to Print Square of Each Element of 2D Ar...
      • C Program to Read Array Elements
      • C Program to Print Array Elements
      • C Program to Delete an element from the specified ...
      • C Program to Insert an element in an Array
      • C Program to Copy all elements of an array into An...
      • C Program to Search an element in Array
      • C Program to Merge Two arrays in C Programming
      • C Program to Reversing an Array Elements in C Prog...
      • C Program to Find Largest Element in Array in C Pr...
      • C Program to Find Smallest Element in Array in C P...
      • C Program to Calculate Addition of All Elements in...
      • C Program to Delete duplicate elements from an array
      • C decrementing pointer
      • C Program to Read integers into an array and Rever...
      • C incrementing pointer
      • C Program to Implement Stack Operations Using Array
      • Program to Print All ASCII Value Table in C Progra...
      • Program to Check Whether Number is Perfect Or Not
      • C Progranm to Check for Armstrong Number
      • Check Whether Number is Prime or not
      • Check Whether Given Number is Palindrome or Not ????
      • C Program To Print First 10 Natural Numbers
      • C Program to generate the Fibonacci Series startin...
      • C Program to Swap two no’s without using third var...
      • C Program to reverse a given number !
      • C Program to Implement Calender Program to display...
      • C Program to find Factorial of Number without usin...
      • C Program to print table of n and square of n usin...
      • Find Factorial of Number Using Recursion
      • C Program to Solve Second Order Quadratic Equation
      • C Program to find sum of two numbers
      • C Program to Calculate Area and Circumference of c...
      • C Program to find the simple interest
      • C Program to Convert temperature from degree centi...
      • C Program to calculate sum of 5 subjects and find ...
      • C Program to reverse a given number !
      • C Program to calculate gross salary of a person.
      • C Program to find greatest in 3 numbers
      • C program to reads customer number and power consu...
      • C program to read the values of x, y and z and pri...
      • C Program to find exponent Power Series !!
      • C Program to Calculate Area of Circle using Pointer
      • C Program to Compute sum of the array elements usi...
      • C Program to Calculate Area of Square
      • C Program to Calculate Area of Rectangle
      • C Program to Calculate Area of Circle
      • C Program to Calculate Area of Right angle Triangle
      • C Program to Calculate Area of Equilatral Triangle
      • C Program to Calculate Area and Circumference of c...
      • C Program to Calculate Area of Scalene Triangle

Komentar

Label Pilihan

  • C Programs
  • Utilities
  • Windows 7
Powered by Blogger.

Popular Post

  • C Program to Calculate Area of Circle using Pointer
    Calculate Area of Circle using Pointer : # include < stdio.h > void areaperi ( int r , float * a , float * p ) { * a = ...
  • C Program to Compute sum of the array elements using pointers !
    Write a ‘C’ Program to compute the sum of all elements stored in an array using pointers C Program to compute sum of the array elements ...
  • C Program to find exponent Power Series !!
    Program : A program to evaluate the power series x2 x3 xn ex = 1 + x + --- + --- + ..... + ---- , 0 < x...
  • C Program to Check whether Matrix is Magic Square or Not ?
    C Program to Check whether entered matrix is magic square or not ? What is Magic Square : A magic square is a simple mathematical  gam...
  • C Program to Print Square of Each Element of 2D Array Matrix
    C Program : C Program to Print Square of Each Element of 2D Matrix # include < stdio.h > # include < conio.h > # define M...
Unknown
View my complete profile

SUBSCRIBE OUR NEWSLETTER

Join us for free and get valuable content delivered right through your inbox.



get this widget

Blogroll

Copyright © 2025 Program-Wiki All Right Reserved |
Created by Arlina Design
| Distributed By Gooyaabi Templates