C Programs - c program to find / print / show / check

23
C programs For various c programs: http://www.itstudentjunction.com/c-programs.htm c programming language is first general purpose programming lanuage used for developing system as well as application software The advantages of using c language are: Low level instruction mapping Requires minimum run time support Support cross platform programming Helps in developing efficient programs Various features of c programming language are 1. Implementation pointers 2. first genral pupose programming language later lead in development of object oriented languages like c++ & java 3. C is portable 4. Due to its thin layer of abstraction and low overhead, C allows efficient implementations of algorithms and data structures Writing c programs For various c programs: http://www.itstudentjunction.com/c-programs.htm Any c program begins with pre processor directory A preprocessor is a program that processes the C program before the compiler. for example the statement #include<stdio.h> effectively inserts the file ‘stdio.h' into the c program making functions contained in the ‘stdio.h' file available to the programmer After including files The program may define macros example: #define max 3 defining macros are optional and their usage depends on program. Macros help in writing efficient programs for faster computation. The next part of c program is main() : The execution of the C program begins from main(). Without this function, C program does not execute Main() has block of code inserted between "{" and "}" (flower brackets) Inside main() contains variables are functions that are basic building blocks of any program

description

c programs free download, c examples, free download, data structures programs in c,c program to find / show / print / calculate numbers string number, c programs, , c program to find , c program to print, c program to calculate, c program to show, c program to check, c , program, to, show, find, print, calculate, numbers, numbers, string, strings, in , using, using recursion, using macros

Transcript of C Programs - c program to find / print / show / check

Page 1: C Programs - c program to find / print / show / check

C programs

For various c programs:

http://www.itstudentjunction.com/c-programs.htm

c programming language is first general purpose programming lanuage used for developing system as

well as application software

The advantages of using c language are:

Low level instruction mapping

Requires minimum run time support

Support cross platform programming

Helps in developing efficient programs

Various features of c programming language are

1. Implementation pointers

2. first genral pupose programming language later lead in development of object oriented

languages like c++ & java

3. C is  portable

4. Due to its thin layer of abstraction and low overhead, C allows efficient 

implementations of algorithms and data structures

Writing c programs

For various c programs:

http://www.itstudentjunction.com/c-programs.htm

Any c program begins with pre processor directory A preprocessor is a program that processes the C

program before the compiler. for example the statement #include<stdio.h> effectively inserts the file

‘stdio.h' into the c program making functions contained in the ‘stdio.h' file available to the programmer

After including files The program may define macros

example:  #define max 3

defining macros are optional and their usage depends on program. Macros help in writing efficient

programs for faster computation.

The next part of c program is main() : The execution of the C program begins from main(). Without this

function, C program does not execute Main() has block of code

inserted between "{" and "}" (flower brackets)

Inside main() contains variables are functions that are basic building blocks of any program

Page 2: C Programs - c program to find / print / show / check

AIM of learning c programs:is To develop programming skills in design and implementation of c

applications.

AIM of learning c programming

Here are some of examples of c programs that can help you in learning basics of c programming:

Implementing various number logic programs such as calculation of simple interest, compound

interest, finding factorial of a given number in c, Finding a number is even or odd ,

number is perfect or not, number is prime or not, find a factors of integer,find prime factors

check a number is armstrong or not, print armstrong number,find a number is amicable or not, Find

sum of n numbers, average of n numbers, find largest of two numbers, largest of n numbers, LCM of

two numbers, GCD of two numbers in c language, print numbers in word format, print pascal Triangle

Find roots of quadriatic expression ,find addition and subtraction of complex numbers, multiplication of

complex numbers, print pyramid of numbers , convert demical number to binary ,demical number to

octal, demical number to hexadecimal

print sum of digits of positive integer, implement towers of hannoi, addition of two matrices

multiplication of two matrices, find transpose of a given matrix, inverse of a given matrix in c

print lower triangle of a matrix , print upper triangle of a matrix, represent sparse matrix, find addition

of sparse matrix, find multiplication of sparse matrix 

Implementing macros such as calculating simple interest using macros, find maximum and minimum

values using macro's,

Learn Implemention of recursion  using some examples like gcd of two numbers, print fibonacci

numbers, find factorial of a number using recursion, find sum of factorial series, To find reverse of a

number using recurrsion

Learn about various data types and their sizes

Showing automatic variable scope, external variable scope, static variable scope, showing register

variable scope

Implementing structures example:delete modify employee data

Learn about various operations performed on strings such as finding reverse a string using strrev,

reverse a string using pointers, reverse a string using arrays, Finding length of a string using strlen,

length of a string using arrays, length of a string using pointers, To concatinate two strings using

strCat function , to concatinate two strings using arrays, To convert string to uppercase , convert string

to lowercase , To find a string is substring or not, Find no, of words in a string, Find no, of vowels in a

string, Finding first occurance of character in a string using c program, To compare two strings using

arrays, compare two strings using pointers,  to compare two strings using strcmp, to check if a string is

palindrome or not 

Learn various operations performed on file such as to copy one file into another file, to write student

records in a file

Page 3: C Programs - c program to find / print / show / check

For various c programs:

http://www.itstudentjunction.com/c-programs.htm

Here are list of programs:

c programs on numbers logics

program to calculate simple interest - c programs

program to calculate compound interest

program to find factorial of a given number

program to check a number is even or odd

program check a number is perfect or not

program to check a number is prime or not

program to find a factors of integer

find prime factors- c programs

Check a number is armstrong or not

program to print armstrong number

Check a number is amicable or not

program to calculate sum of n numbers

program to calculate average of n numbers

program to find largest of two numbers

program to find largest of n numbers

program to find LCM of two numbers

print GCD of two numbers - c programs

print numbers in word format

Page 4: C Programs - c program to find / print / show / check

print pascal Triangle

print roots of quadriatic expression

find addition and subtraction of complex numbers

show multiplication of complex numbers- c programs

print pyramid of numbers

convert demical number to binary

convert demical number to octal

convert demical number to hexadecimal

print sum of digits of positive integer

implement towers of hannoi

program to check a number is palindrome number or not

check a number is strong number or not

find biggest of three numbers- c programs

find largest & smallest values in array - c programs

find no. of possible combinations

find no. of digits in a number

find no. of permutations- c programs

program to print prime numbers below 100

find result of power value -C Programs

program to find reverse of a number

program to find smallest number in an array

print sum of Digits of a number

Implement Floyd’s Triangle - c programs

check a number is even or odd

Page 5: C Programs - c program to find / print / show / check

c program to swap two numbers without using temp

C programs on Functions

implement function with arguments and no return value

implement Function with arguments and a return value

Implement Function with no arguments and a return value - c programs

Implement function with no arguments and no return value

C programs on Matrices

find addition of two matrices - c programs

show multiplication of two matrices

print transpose of a given matrix

print inverse of a given matrix

print lower triangle of a matrix

print upper triangle of a matrix

Represent sparse matrix

print addition of sparse matrix

find multiplication of sparse matrix

Page 6: C Programs - c program to find / print / show / check

c programs on Macros

program to calculate simple interest using macros

program to find maximum and minimum values

using macro's

c programs on Recurrsion

program to find gcd of two numbers using recurrsion

program to print fibonacci numbers using recurrsion

program to show factorial of a number using recurrsion

program to show sum of factorial series using recurrsion

program to find reverse of a number using recurrsion

c programs on Data Types

program to find size of various data types

C programs on Storage classes

Page 7: C Programs - c program to find / print / show / check

Show automatic variable scope

Show external variable scope

Show static variable scope

Show register variable scope

C programs on Structs & unions

add delete modify employee data

C programs on Strings

find reverse a string using strrev- c programs

print reverse a string using pointers

print reverse a string using arrays

length of a string using strlen

length of a string using arrays

length of a string using pointers

Show concatinate two strings using strCat function

Show concatinate two strings using arrays

check status of a character

convert string to lowercase - c programs

Page 8: C Programs - c program to find / print / show / check

convert a string to uppercase

convert string to uppercase

convert string to lowercase

check a string is substring or not

program to find no, of words in a string

c program to find no, of vowels in a string

Find first occurance of character in a string

compare two strings using arrays

compare two strings using pointers

compare two strings using strcmp

check if a string is palindrome or not

print position of a substring - c programs

program to find Various combinations of string

program to show acromatic string

program to show rain drop character

C programs on Files

copy one file into another file

write student records in a file

Page 9: C Programs - c program to find / print / show / check

C programs on Graphics

show different line styles

show various fill styles

show various font styles

c programs on Others

show escape operators - c programs

C Programs on Data structures

c programs on stacks, linked lists, queues, trees, searching & sorting in c language

ARRAY DATA STRUCTURE PROGRAMS USING C LANGUAGE

FIND MULTIPLICATION OF TWO MATRICES - Data structures programs

PRINT TRANSPOSE OF A MATRIX

ACCEPT 10 STRINGS AS INPUT & PRINT IN LEXICOGRAPHIC ORDER

SHOW TWO STRINGS S1,S2 & CHECK IF S2 IS SUBSTRING OF S1 & ALSO THE POSITION OF THE SUB STRING IN S1 - Data structures programs in c

CONCATENATE TWO STRINGS S1 & S2

FIND THE STUDENT INFORMATION & PRINT THE STUDENT INFORMATION & RANK SECURED IN ASCENDING ORDER - Data structures programs using c.

Page 10: C Programs - c program to find / print / show / check

MULTIPLY TWO SPARCE MATRICES

TAKE PARAGRAPH AS INPUT AND OUTPUT NO, OF OCCURRENCES OF STRING IN PARAGRAPH

POINTERS PROGRAMS IN C

CREATE AND DELETE ELEMENTS OF A LIST USING POINTERS - Data structure programs

PROGRAM TO REVERSE AN INPUT STRING

CONVERT A PREFIX EXPRESSION TO A POSTFIX USING POINTERS

LINKED LISTS DATA STRUCTURE PROGRAMS IN C

CREATE ADD REMOVE & DISPLAY ELEMENTS FROM SINGLE LINKED LIST STRUCTURE- data structures programs using c

CREATE ADD REMOVE & DISPLAY ELEMENT FROM DOUBLE LINKED LIST

COUNT NUMBER OF NODES IN LINEAR LINKED LIST STRUCTURE

CREATE ADD REMOVE & DISPLAY ELEMENT FROM CIRCULAR LINKED LIST STRUCTURE

CONCATENATE TWO LINEAR LINKED LISTS STRUCTURES

ACCEPT 2 SINGLY LINKED LISTS & PRINT A SINGLY LINKED LIST THOSE ELEMENTS ARE COMMON IN BOTH THE LIST

ACCEPT A SINGLY LINKED LIST OF INTEGERS & SORT THE LIST IN ASCENDING ORDER - DATA STRUCTURES PROGRAMS in c.

IMPLEMENT CIRCULAR LINKED LIST STRUCTURE IN C

IMPLEMENT REVERSE LINKED LIST STRUCTURE

Page 11: C Programs - c program to find / print / show / check

REPRESENT POLYNOMIAL USING LINKED LIST STRUCTURES

ADD TWO POLYNOMIALS USING LINKED LIST STRUCTURES

STACKS DATA STRUCTURE PROGRAMS IN C

IMPLEMENT STACK STRUCTURE USING ARRAYS

IMPLEMENT STACK USING LINKED LIST DATA STRUCTURE

IMPLEMENT MULTIPLE STACK IN A SINGLE ARRAY

IMPLEMENT EXPRESSION TREE USING STACKS IN ITS INORDER, PREORDER & POST ORDER TRAVERSALS

CONVERT INFIX NOTATION TO POSTFIX NOTATION USING STACKS

QUEUES DATA STRUCTURES PROGRAMS USING C

PROGRAM TO IMPLEMENT QUEUE STRUCTURE USING ARRAYS

PROGRAN TO IMPLEMENT QUEUE STRUCTURE USING POINTERS

PROGRAM TO IMPLEMENT CIRCULAR QUEUE STRUCTURE USING ARRAYS

PROGRAM TO IMPLEMENT DEQUEUE STRUCTURE USING ARRAYS

REVERSE ELEMENTS IN A QUEUE STRUCTURE

TREES DATA STRUCTURES PROGRAMS IN C

Page 12: C Programs - c program to find / print / show / check

CREATION OF BINARY TREE, PROVIDE INSERTION & DELETION IN C - data structures programs in c

PRE-ORDER,POST-ORDER & IN-ORDER TRAVERSALS OF A BINARY TREE USING NON RECCURSIVE.

COUNT NO, OF LEAVES OF BINARY TREE - data structures programs using c

IMPLEMENTATION OF B-TREE (INSERTION & DELETION)

IMPLEMENTATION OF MULTIWAY TREE IN C

HASHING DATA STRUCTURES PROGRAMS USING C

PROGRAM TO IMPLEMENT HASHING USING OPEN ADDRESSING

HEAPS DATA STRUCTURES PROGRAMS IN C

PROGRAM TO IMPLEMENT PRIORITY QUEUE USING HEAP - Data structures programs in c

GRAPHS DATA STRUCTURES PROGRAMS IN C

IMPLEMENT DIJKSTRA'S ALGORITHM USING PRIORITY QUEUES

KNAPSACK PROBLEM USING BACKTRACKING

ADD & DELETE NODES FROM ADJACENCY LIST

IMPLEMENT DEPTH FIRST SEARCH - DATA STRUCTURES PROGRAMS using c

FIND MINIMAL SPANNING TREE USING KRUSKAL'S ALGORITHM

Page 13: C Programs - c program to find / print / show / check

FIND MINIMAL SPANNING TREE USING PRIMS ALGORITHM

IMPLEMENT BREADTH FIRST SEARCH

SEARCH PROGRAMS IN C

LINEAR SEARCH USING POINTERS - DATA STRUCTURES PROGRAMS using c

BINARY SEARCH USING POINTERS

LINEAR SEARCH USING ARRAYS

BINARY SEARCH USING ARRAYS

SORTING PROGRAMS USING C

BUBBLE SORT PROGRAM USING ARRAYS

MERGE SORT USING ARRAYS

SELECTION SORT PROGRAM USING ARRAYS

INSERTION SORT PROGRAM USING ARRAYS

TOPOLOGICAL SORT USING ARRAYS

HEAP SORT USING ARRAYS - DATA STRUCTURES PROGRAMS

Page 14: C Programs - c program to find / print / show / check

HEAP SORT USING POINTERS

WRITE BUBBLE SORT PROGRAM USING POINTERS

Key words:

calculate simple interest write a c program to Check status of char write a c program to Convert string to lowercaseFind Perfect numbers below range write a c program to covert a string to uppercase show palindrome number or not check strong number or not find biggest of three numbers largest & smallest values in array Find no. of combinations write a c program to Find no. of digits in a number Find no. of permutations in c find position of a substring c program to Find prime numbers below 100 result of power value write a c program to show reverse of a number Smallest number in an array write a c program to print Sum of Digits of a number Find Various combinations of string Implement Floyd’s Triangle Function with arguments and no return value Function with arguments and a return valu Function with no arguments and a return value Function with no arguments and no return value Show acromatic string Show different line styles show escape operators check for even or odd show rain drop character various fill styles various font styles swap two numbers without using temp write a c program to calculate compound interest find factorial number is even or odd check a number is perfect or not check a number is prime or not factors of integer find prime factors print armstrong number print armstrong number number is amicable or not sum of n numbers average of n numbers largest of two numbers largest of two numbers LCM of two numbers write a c program to print GCD of two numbers numbers in word forma print pascal Triangle roots of quadriatic expression addition and subtraction of complex numbers multiplication of complex numbers print pyramid of numbers convert demical number to binary convert demical number to octal convert demical number to hexadecimal sshow um of digits of positive integer show towers of hanno addition of two matrices multiplication of two matrices transpose of a given matrix inverse of a given matrix lower triangle of a matrix upper triangle of a matrix represent sparse matrix write a c program to find addition of sparse matrix multiplication of sparse matrix simple interest using macros maximum and minimum values using macro's gcd of two numbers using recurrsion fibonacci numbers using recurrsion print factorial of a number using recurrsion write a c program to print sum of factorial series using recurrsion reverse of a number using recurrsion size of various data types show automatic variable scope show external variable scope show static variable scope show register variable scope add delete modify employee in c data reverse a string using strrev reverse a string using pointers reverse a string using arrays length of a string using strlen length of a string using arrays length of a string using pointers concatinate two strings using strCat function write a c program to concatinate two strings using arrays convert string to uppercase c program to convert string to lowercase check string is substring or not words in a string vowels in a string character in a string compare two strings using arrays compare two strings using pointers compare two strings using strcmp write a c program to check if a string is palindrome or not copy file student records into a file write a c program to find MULTIPLICATION OF TWO MATRICES PRINT TRANSPOSE OF A MATRIX PRINT STRINGS LEXICOGRAPHIC ORDER CHECK IF string IS SUBSTRING OF OTHER STRING ALSO THE POSITION OF THE SUB STRING write a c program to CONCATENATE TWO STRINGS PRINT THE STUDENT INFORMATION ,RANK SECURED IN ASCENDING ORDER. MULTIPLY TWO SPARCE MATRICES TAKE PARAGRAPH AS INPUT AND OUTPUT NO, OF OCCURRENCES OF STRING IN PARAGRAPH CREATE .DELETE

Page 15: C Programs - c program to find / print / show / check

ELEMENTS OF A LIST calculate simple interest write a c program to Check status of char write a c program to Convert string to lowercaseFind Perfect numbers below range write a c program to covert a string to uppercase show palindrome number or not check strong number or not find biggest of three numbers largest & smallest values in array Find no. of combinations write a c program to Find no. of digits in a number Find no. of permutations in c find position of a substring c program to Find prime numbers below 100 result of power value write a c program to show reverse of a number Smallest number in an array write a c program to print Sum of Digits of a number Find Various combinations of string Implement Floyd’s Triangle Function with arguments and no return value Function with arguments and a return valu Function with no arguments and a return value Function with no arguments and no return value Show acromatic string Show different line styles show escape operators check for even or odd show rain drop character various fill styles various font styles swap two numbers without using temp write a c program to calculate compound interest find factorial number is even or odd check a number is perfect or not check a number is prime or not factors of integer find prime factors print armstrong number print armstrong number number is amicable or not sum of n numbers average of n numbers largest of two numbers largest of two numbers LCM of two numbers write a c program to print GCD of two numbers numbers in word forma print pascal Triangle roots of quadriatic expression addition and subtraction of complex numbers multiplication of complex numbers print pyramid of numbers convert demical number to binary convert demical number to octal convert demical number to hexadecimal sshow um of digits of positive integer show towers of hanno addition of two matrices multiplication of two matrices transpose of a given matrix inverse of a given matrix lower triangle of a matrix upper triangle of a matrix represent sparse matrix write a c program to find addition of sparse matrix multiplication of sparse matrix simple interest using macros maximum and minimum values using macro's gcd of two numbers using recurrsion fibonacci numbers using recurrsion print factorial of a number using recurrsion write a c program to print sum of factorial series using recurrsion reverse of a number using recurrsion size of various data types show automatic variable scope show external variable scope show static variable scope show register variable scope add delete modify employee in c data reverse a string using strrev reverse a string using pointers reverse a string using arrays length of a string using strlen length of a string using arrays length of a string using pointers concatinate two strings using strCat function write a c program to concatinate two strings using arrays convert string to uppercase c program to convert string to lowercase check string is substring or not words in a string vowels in a string character in a string compare two strings using arrays compare two strings using pointers compare two strings using strcmp write a c program to check if a string is palindrome or not copy file student records into a file write a c program to find MULTIPLICATION OF TWO MATRICES PRINT TRANSPOSE OF A MATRIX PRINT STRINGS LEXICOGRAPHIC ORDER CHECK IF string IS SUBSTRING OF OTHER STRING ALSO THE POSITION OF THE SUB STRING write a c program to CONCATENATE TWO STRINGS PRINT THE STUDENT INFORMATION ,RANK SECURED IN ASCENDING ORDER. MULTIPLY TWO SPARCE MATRICES TAKE PARAGRAPH AS INPUT AND OUTPUT NO, OF OCCURRENCES OF STRING IN PARAGRAPH CREATE .DELETE ELEMENTS OF A LIST calculate simple interest write a c program to Check status of char write a c program to Convert string to lowercaseFind Perfect numbers below range write a c program to covert a string to uppercase show palindrome number or not check strong number or not find biggest of three numbers largest & smallest values in array Find no. of combinations write a c program to Find no. of digits in a number Find no. of permutations in c find position of a substring c program to Find prime numbers below 100 result of power value write a c program to show reverse of a number Smallest number in an array write a c program to print Sum of Digits of a number Find Various combinations of string Implement Floyd’s Triangle Function with arguments and no return value Function with arguments and a return valu Function with no arguments and a return value Function with no arguments and no return value Show acromatic string Show different line styles show escape operators

Page 16: C Programs - c program to find / print / show / check

check for even or odd show rain drop character various fill styles various font styles swap two numbers without using temp write a c program to calculate compound interest find factorial number is even or odd check a number is perfect or not check a number is prime or not factors of integer find prime factors print armstrong number print armstrong number number is amicable or not sum of n numbers average of n numbers largest of two numbers largest of two numbers LCM of two numbers write a c program to print GCD of two numbers numbers in word forma print pascal Triangle roots of quadriatic expression addition and subtraction of complex numbers multiplication of complex numbers print pyramid of numbers convert demical number to binary convert demical number to octal convert demical number to hexadecimal sshow um of digits of positive integer show towers of hanno addition of two matrices multiplication of two matrices transpose of a given matrix inverse of a given matrix lower triangle of a matrix upper triangle of a matrix represent sparse matrix write a c program to find addition of sparse matrix multiplication of sparse matrix simple interest using macros maximum and minimum values using macro's gcd of two numbers using recurrsion fibonacci numbers using recurrsion print factorial of a number using recurrsion write a c program to print sum of factorial series using recurrsion reverse of a number using recurrsion size of various data types show automatic variable scope show external variable scope show static variable scope show register variable scope add delete modify employee in c data reverse a string using strrev reverse a string using pointers reverse a string using arrays length of a string using strlen length of a string using arrays length of a string using pointers concatinate two strings using strCat function write a c program to concatinate two strings using arrays convert string to uppercase c program to convert string to lowercase check string is substring or not words in a string vowels in a string character in a string compare two strings using arrays compare two strings using pointers compare two strings using strcmp write a c program to check if a string is palindrome or not copy file student records into a file write a c program to find MULTIPLICATION OF TWO MATRICES PRINT TRANSPOSE OF A MATRIX PRINT STRINGS LEXICOGRAPHIC ORDER CHECK IF string IS SUBSTRING OF OTHER STRING ALSO THE POSITION OF THE SUB STRING write a c program to CONCATENATE TWO STRINGS PRINT THE STUDENT INFORMATION ,RANK SECURED IN ASCENDING ORDER. MULTIPLY TWO SPARCE MATRICES TAKE PARAGRAPH AS INPUT AND OUTPUT NO, OF OCCURRENCES OF STRING IN PARAGRAPH CREATE .DELETE ELEMENTS OF A LIST calculate simple interest write a c program to Check status of char write a c program to Convert string to lowercaseFind Perfect numbers below range write a c program to covert a string to uppercase show palindrome number or not check strong number or not find biggest of three numbers largest & smallest values in array Find no. of combinations write a c program to Find no. of digits in a number Find no. of permutations in c find position of a substring c program to Find prime numbers below 100 result of power value write a c program to show reverse of a number Smallest number in an array write a c program to print Sum of Digits of a number Find Various combinations of string Implement Floyd’s Triangle Function with arguments and no return value Function with arguments and a return valu Function with no arguments and a return value Function with no arguments and no return value Show acromatic string Show different line styles show escape operators check for even or odd show rain drop character various fill styles various font styles swap two numbers without using temp write a c program to calculate compound interest find factorial number is even or odd check a number is perfect or not check a number is prime or not factors of integer find prime factors print armstrong number print armstrong number number is amicable or not sum of n numbers average of n numbers largest of two numbers largest of two numbers LCM of two numbers write a c program to print GCD of two numbers numbers in word forma print pascal Triangle roots of quadriatic expression addition and subtraction of complex numbers multiplication of complex numbers print pyramid of numbers convert demical number to binary convert demical number to octal convert demical number to hexadecimal sshow um of digits of positive integer show towers of hanno addition of two matrices multiplication of two matrices transpose of a given matrix inverse of a given matrix lower triangle of a matrix upper triangle of a matrix

Page 17: C Programs - c program to find / print / show / check

represent sparse matrix write a c program to find addition of sparse matrix multiplication of sparse matrix simple interest using macros maximum and minimum values using macro's gcd of two numbers using recurrsion fibonacci numbers using recurrsion print factorial of a number using recurrsion write a c program to print sum of factorial series using recurrsion reverse of a number using recurrsion size of various data types show automatic variable scope show external variable scope show static variable scope show register variable scope add delete modify employee in c data reverse a string using strrev reverse a string using pointers reverse a string using arrays length of a string using strlen length of a string using arrays length of a string using pointers concatinate two strings using strCat function write a c program to concatinate two strings using arrays convert string to uppercase c program to convert string to lowercase check string is substring or not words in a string vowels in a string character in a string compare two strings using arrays compare two strings using pointers compare two strings using strcmp write a c program to check if a string is palindrome or not copy file student records into a file write a c program to find MULTIPLICATION OF TWO MATRICES PRINT TRANSPOSE OF A MATRIX PRINT STRINGS LEXICOGRAPHIC ORDER CHECK IF string IS SUBSTRING OF OTHER STRING ALSO THE POSITION OF THE SUB STRING write a c program to CONCATENATE TWO STRINGS PRINT THE STUDENT INFORMATION ,RANK SECURED IN ASCENDING ORDER. MULTIPLY TWO SPARCE MATRICES TAKE PARAGRAPH AS INPUT AND OUTPUT NO, OF OCCURRENCES OF STRING IN PARAGRAPH CREATE .DELETE ELEMENTS OF A LIST calculate simple interest write a c program to Check status of char write a c program to Convert string to lowercaseFind Perfect numbers below range write a c program to covert a string to uppercase show palindrome number or not check strong number or not find biggest of three numbers largest & smallest values in array Find no. of combinations write a c program to Find no. of digits in a number Find no. of permutations in c find position of a substring c program to Find prime numbers below 100 result of power value write a c program to show reverse of a number Smallest number in an array write a c program to print Sum of Digits of a number Find Various combinations of string Implement Floyd’s Triangle Function with arguments and no return value Function with arguments and a return valu Function with no arguments and a return value Function with no arguments and no return value Show acromatic string Show different line styles show escape operators check for even or odd show rain drop character various fill styles various font styles swap two numbers without using temp write a c program to calculate compound interest find factorial number is even or odd check a number is perfect or not check a number is prime or not factors of integer find prime factors print armstrong number print armstrong number number is amicable or not sum of n numbers average of n numbers largest of two numbers largest of two numbers LCM of two numbers write a c program to print GCD of two numbers numbers in word forma print pascal Triangle roots of quadriatic expression addition and subtraction of complex numbers multiplication of complex numbers print pyramid of numbers convert demical number to binary convert demical number to octal convert demical number to hexadecimal sshow um of digits of positive integer show towers of hanno addition of two matrices multiplication of two matrices transpose of a given matrix inverse of a given matrix lower triangle of a matrix upper triangle of a matrix represent sparse matrix write a c program to find addition of sparse matrix multiplication of sparse matrix simple interest using macros maximum and minimum values using macro's gcd of two numbers using recurrsion fibonacci numbers using recurrsion print factorial of a number using recurrsion write a c program to print sum of factorial series using recurrsion reverse of a number using recurrsion size of various data types show automatic variable scope show external variable scope show static variable scope show register variable scope add delete modify employee in c data reverse a string using strrev reverse a string using pointers reverse a string using arrays length of a string using strlen length of a string using arrays length of a string using pointers concatinate two strings using strCat function write a c program to concatinate two strings using arrays convert string to uppercase c program to convert string to lowercase check string is substring or not words in a string vowels in a string character in a string compare two strings using arrays compare two

Page 18: C Programs - c program to find / print / show / check

strings using pointers compare two strings using strcmp write a c program to check if a string is palindrome or not copy file student records into a file write a c program to find MULTIPLICATION OF TWO MATRICES PRINT TRANSPOSE OF A MATRIX PRINT STRINGS LEXICOGRAPHIC ORDER CHECK IF string IS SUBSTRING OF OTHER STRING ALSO THE POSITION OF THE SUB STRING write a c program to CONCATENATE TWO STRINGS PRINT THE STUDENT INFORMATION ,RANK SECURED IN ASCENDING ORDER. MULTIPLY TWO SPARCE MATRICES TAKE PARAGRAPH AS INPUT AND OUTPUT NO, OF OCCURRENCES OF STRING IN PARAGRAPH CREATE .DELETE ELEMENTS OF A LIST calculate simple interest write a c program to Check status of char write a c program to Convert string to lowercaseFind Perfect numbers below range write a c program to covert a string to uppercase show palindrome number or not check strong number or not find biggest of three numbers largest & smallest values in array Find no. of combinations write a c program to Find no. of digits in a number Find no. of permutations in c find position of a substring c program to Find prime numbers below 100 result of power value write a c program to show reverse of a number Smallest number in an array write a c program to print Sum of Digits of a number Find Various combinations of string Implement Floyd’s Triangle Function with arguments and no return value Function with arguments and a return valu Function with no arguments and a return value Function with no arguments and no return value Show acromatic string Show different line styles show escape operators check for even or odd show rain drop character various fill styles various font styles swap two numbers without using temp write a c program to calculate compound interest find factorial number is even or odd check a number is perfect or not check a number is prime or not factors of integer find prime factors print armstrong number print armstrong number number is amicable or not sum of n numbers average of n numbers largest of two numbers largest of two numbers LCM of two numbers write a c program to print GCD of two numbers numbers in word forma print pascal Triangle roots of quadriatic expression addition and subtraction of complex numbers multiplication of complex numbers print pyramid of numbers convert demical number to binary convert demical number to octal convert demical number to hexadecimal sshow um of digits of positive integer show towers of hanno addition of two matrices multiplication of two matrices transpose of a given matrix inverse of a given matrix lower triangle of a matrix upper triangle of a matrix represent sparse matrix write a c program to find addition of sparse matrix multiplication of sparse matrix simple interest using macros maximum and minimum values using macro's gcd of two numbers using recurrsion fibonacci numbers using recurrsion print factorial of a number using recurrsion write a c program to print sum of factorial series using recurrsion reverse of a number using recurrsion size of various data types show automatic variable scope show external variable scope show static variable scope show register variable scope add delete modify employee in c data reverse a string using strrev reverse a string using pointers reverse a string using arrays length of a string using strlen length of a string using arrays length of a string using pointers concatinate two strings using strCat function write a c program to concatinate two strings using arrays convert string to uppercase c program to convert string to lowercase check string is substring or not words in a string vowels in a string character in a string compare two strings using arrays compare two strings using pointers compare two strings using strcmp write a c program to check if a string is palindrome or not copy file student records into a file write a c program to find MULTIPLICATION OF TWO MATRICES PRINT TRANSPOSE OF A MATRIX PRINT STRINGS LEXICOGRAPHIC ORDER CHECK IF string IS SUBSTRING OF OTHER STRING ALSO THE POSITION OF THE SUB STRING write a c program to CONCATENATE TWO STRINGS PRINT THE STUDENT INFORMATION ,RANK SECURED IN ASCENDING ORDER. MULTIPLY TWO SPARCE MATRICES TAKE PARAGRAPH AS INPUT AND OUTPUT NO, OF OCCURRENCES OF STRING IN PARAGRAPH CREATE .DELETE ELEMENTS OF A LIST USING POINTERS REVERSE AN INPUT STRING PREFIX EXPRESSION TO A POSTFIX USING POINTERS CREATE ADD REMOVE, DISPLAY ELEMENTS FROM SINGLE LINKED LIST CREATE ADD REMOVE; DISPLAY ELEMENT FROM DOUBLE LINKED LIST COUNT NUMBER OF NODES IN LINEAR LINKED LIST CREATE ADD REMOVE; DISPLAY ELEMENT FROM CIRCULAR LINKED LIST write a C PROGRAM TO

Page 19: C Programs - c program to find / print / show / check

CONCATENATE TWO LINEAR LINKED LISTS ACCEPT 2 SINGLY LINKED LISTS PRINT A LIST THOSE ELEMENTS ARE COMMON IN BOTH WRITE A C PROGRAM TO ACCEPT A SINGLY LINKED LIST OF INTEGERS & SORT THE LIST IN ASCENDING ORDER. IMPLEMENT CIRCULAR LINKED LIST IN C REVERSE LINKED LIST REPRESENT POLYNOMIAL USING LINKED LIST ADD TWO POLYNOMIALS USING LINKED LIST IMPLEMENT STACK USING ARRAYS STACK USING LINKED LIST MULTIPLE STACK IN A SINGLE ARRAY EXPRESSION TREE USING STACKS IND ITS INORDER, PREORDER , POST ORDER TRAVERSALS CONVERT INFIX NOTATION TO POSTFIX NOTATION USING STACKS IMPLEMENT QUEUE USING ARRAYS IMPLEMENT QUEUE USING POINTERS IMPLEMENT CIRCULAR QUEUE USING ARRAYS IMPLEMENT DEQUEUE USING ARRAYS REVERSE ELEMENTS IN A QUEUE CREATION OF BINARY TREE ALSO INSERTION,DELETION PRE-ORDER,POST-ORDER ,IN-ORDER TRAVERSALS OF A BINARY COUNT NO, OF LEAVES OF BINARY TREE IMPLEMENTATION OF B-TREE (INSERTION,DELETION) WRITE A C PROGRAM FOR IMPLEMENTATION OF MULTIWAY TREE IN C WRITE A C PROGRAM FOR IMPLEMENTATION OF AVL TREE WRITE A C PROGRAM FOR IMPLEMENTATION OF SPLAY TREE WRITE A C PROGRAM FOR IMPLEMENTATION OF RED-BLACK TREE write a c program show HASHING USING OPEN ADDRESSING PRIORITY QUEUE USING HEAP DIJKSTRA'S ALGORITHM USING PRIORITY QUEUES KNAPSACK PROBLEM USING BACKTRACKING ADD ,DELETE NODES FROM ADJACENCY LIST DEPTH FIRST SEARCH MINIMAL SPANNING TREE USING KRUSKAL'S ALGORITHM MINIMAL SPANNING TREE USING PRIMS ALGORITHM BREADTH FIRST SEARCH LINEAR SEARCH USING POINTERS BINARY SEARCH USING POINTERS LINEAR SEARCH USING ARRAYS BINARY SEARCH USING ARRAYS BUBBLE SORT PROGRAM USING ARRAYS MERGE SORT USING ARRAYS SELECTION SORT PROGRAM USING ARRAYS INSERTION SORT PROGRAM USING ARRAYS TOPOLOGICAL SORT USING ARRAYS HEAP SORT USING ARRAYS write a c program to implement HEAP SORT USING POINTERS write a C PROGRAM TO SHOW BUBBLE SORT PROGRAM USING arrays