/* A number is armstrong if the sum of cubes of individual digits of a number is equal to the number itself. For example 371 is an armstrong number as 33 + 73 + 13 = 371. Some other armstrong numbers are: 0, 1, 153, 370, 407 */
Category: C programs
/* Before moving towards the program, a little introduction to the one who dose not know what is palindrome. A palindrome is a word, phrase, number, or other sequence of symbols or elements, whose meaning may be interpreted the same way in either forward or reverse direction i.e if we look from the backwards or from the front […]
/* Before moving towards the program, a little introduction to the one who dose not know what is palindrome. A palindrome is a word, phrase, number, or other sequence of symbols or elements, whose meaning may be interpreted the same way in either forward or reverse direction i.e if we look from the backwards or from the front […]
/* Implementation of SLR Parser */ #include<stdio.h> #include<ctype.h> #include<conio.h> #include<stdlib.h>
/* merge two sorted array */ /* read two list a and b containing m,n valus in sorted order merge into c which is generate in sorted order */
/* Linear Search in the array search the value in serial way (one after another ) */ /* here a[100] – storage of array value