Showing posts with label
c program for sum of diagonal elements in matrix.
Show all posts
Showing posts with label
c program for sum of diagonal elements in matrix.
Show all posts
C program Diagonal sum of matrix
#include
#include
void main()
{
int a[100][100];
int row,col,i,j,sum=0,sum1=0;
clrscr();
printf("enter the rows and cols");
scanf("%d %d",&row,&col);
if(row==col)
{
printf(" \n enter %d by %d matrix",row,col);
for(i=0;i for(j=0;j scanf("%d",&a[i][j]);
for(i=0;i {
for(j=0;j printf("\t %d",a[i][j]);
printf("\n");
}
for(i=0;i {
for(j=0;j {
if(i==j)
sum=sum+a[i][j];
}
}
for(i=0,j=col-1;i=0;i++,j--)
{
sum1=sum1+a[i][j];
}
printf("\n sum of 1st diagonal=%d",sum) ;
printf("\n sum of 2nd diagonal=%d",sum1) ;
}
getch();
}|
|
|
|
output:
C Program example List
-
C program to find longest word in given string
-
C Programming solve assignment for IT students
-
Write a function to find x rise to y using bit wise operators
-
programs of C and Data Structures print day time date month year
-
C Structure Programming Exam Question With Answer
-
c program transpose of a matrix
-
c understand algorithms and flow chart with examples
-
C graphics program example to draw pie chart,graphics code in c
-
dynamic memory allocation in c programming
-
Explain Various Loop Control structures in c with example
-
Explain various types of data type in C Language?
-
c programs on file handling/Explain Random Access to file in C expain fseek( ) Function ftell ( ) Function with example
-
C program example to calculate difference between two time periods using structure
-
c program example to find largest word in a string
-
c program to find leap year using ternary operator
-
C program that find the sum of upper triangular el...
-
C program to find the sum of following series
-
Write a recursive function to find square root of ...
-
How does Switch statement differ from Nested if
-
indirection operator in C
-
Differentiate between structure and union.
-
Read string and output the frequency of each chara...
-
accept word convert it into lowercase and display ...
-
accept 5 string from user and display using pointe...
-
C program matrix addition using dynamic memory al...
-
implementation of dynamic matrix and calculate sum...
-
print size of pointer variable and pointer values ...
-
string append c programming
-
find maximum number from two numbers by using poin...
-
accept two string and remove common character in b...
-
C program to find occurrence of the
-
insert one string into the string at a given posit...
-
calculate sum of all array element by using dynami...
-
c program Perform matrix operation
-
sum of first 50 number using goto c program
-
check year is leap or not c program
-
sum of n numbers c program
-
copy first array into another array
-
c program accept 10 numbers from user and copy odd...
-
c program to display reverse array
-
c cprogram all array operation,perform operation o...
-
Accept student details with 5 subject using array...
-
c program calculate bill for grocery shop
-
c program to Accept any number from user and conve...
-
c program to calculate series (1/1!)+(1/3!)+---+(1...
-
c program to Accept number from user and display ...
-
c program to print Display ASCII value of A-Z & a...
-
c program to print series of 5n+2 but skip the mul...
-
c program to print first 10 natural number square ...
-
c program reverse of given number
-
c program for print terms of series 3n+2 but stop ...
-
c program for inter conversion of decimal,binary,o...
-
c program print print 15 terms of fibonacci series...
-
c program print prime divisor of given number
-
c programs to display floyd's Triangle
-
c program print first 15 number in reverse
-
c program to find largest of three numbers
-
c program to print dispaly first 15 natural number...
-
c program for even number display first 10 even
-
operator overloading c++ example
-
c programming you must know
-
What is Constant Variable and Keywords
-
C Programming error miss mach prototype C Programming You must Know ?
-
c program to read a set of names and arrange them in ascending order
-
macro example in c-what is preprocessor in c
-
C program using nested marcro
-
c structure program to accept student information and print using pointer
-
C Program To Calculate Simple Interest
-
C program Accept an integer and find out multiply by 2 and division by 2 using bit wise operator
-
C program example to find the sum of series
-
C Program to display size,minimum & maximum capacity of int and float using , use of Limit.h header File in c
-
C program to display data in different format, right alignment, left Alignment
-
c absolute value float, absolute value in c language, abs in c programming
-
c program for swapping two numbers using call by value
-
c escape sequence characters
-
c pattern programs of alphabets
-
c program to find power of a number using recursion
-
c program to sort array element
-
C program to accept a number and check odd or even using bit wise operator
-
c program to accept a string and insert at specific location of another string
-
c program to perform all string operation without using library function using switch case
-
C programming Pointer Basic
-
C program to test whether character is uppercase o...
-
C Program to convert a uppercase char to lowercase...
-
C program to calculate salary with bonus amount.U...
-
C program to swap two number using bit wise operat...
-
C program To check number is even or odd and prim...
-
C program Accept character and check for lowercase...
-
C program to find bigger of two numbers using par...
-
c Program of currency converter
-
C program to calculate slope of line
-
C program to accept seconds and convert it into h...
-
C program to read days and convert it into year, ...
-
C program to reverse 4 digit number, c program l...
-
c program to Accept 4 digit number and calculate a...
-
C program to Accept distance in kilometer and conv...
-
c program to swap the value of two numbers using m...
-
c program example micro with argument
-
C Program to calculate square of number using macr...
-
C Program for swapping two numbers without using t...
-
C Program for swapping two numbers
-
C program to calculate sum and average of five num...
-
C program to calculate percentage of student accep...
-
C program to calculate square and cube of a given ...
-
C program to Calculate gross salary of a employee
-
C program to calculate volume of a cylinder
-
C Program to convert the given temperature in to c...
-
This C Program finds the areas of different geomet...
-
What is Floating point arithmetic
-
what is Mixed mode arithmetic
-
operator in c
-
c storage classes,
-
c code for prime number,c program to find prime factors of a number using function
-
bitwise programs in c,bitwise operator program in c,bitwise programming in c
-
c program for file operations
-
Explain Array in c, its type how to use array with function and pointers
-
Command Line Argument Program With Example
-
Explain Union in c differece between unionand arry
-
Explain RECURSION with example
-
for loop examples in c, What are the control structures in C? Give an example each.
-
relational/conditional operator/ternary operator in c example
-
c program pattern example
-
C Program example to count the number of vowels in given string
-
C Program to display Fibonacci series
-
c program example to extract sub string from given string
-
c Program example reverse the string without using library function.
-
What are escape sequences explain with examples
-
actual and formal parameters of the function?
-
Distinguish between malloc() and calloc(), break and continue
-
c program example to find GCD of a number using recursion
-
C program to compares two binary files, printing the first byte position where they differ
-
What is bit field operator? Explain with example
-
C program example to compares two binary file
-
Type def in c program example
-
c structure program example accept structure element and print using function
-
c structure program example with micro
-
C structure program example to find topper student
-
C program example accept and print array element
-
Write C program example to find length of Given String
-
C program example swapping of two numbers
-
C program example to pass array to the function
-
C Program Pattern Examples with source code.
-
C Program example to reverse each world of given sentence
-
C program example to make string revere using recursive function,
-
C program example to compare two string without using library function
-
C program example Diagonal sum of matrix
-
C Programming Practical assignment list
-
simple c program example with explanation
-
c program example to perform all string operation using pointers
-
c structure program to perform account operation deposit , withdraw check balance
-
c program to count the number of vowels in a given string
-
c program to check vowels and consonant in a given string using switch case
-
write a c program to check number is r even or odd,Armstrong no,prime no using switch case
-
c matrix multiplication
-
C program to Reverse Each Word of Given String
-
c program to find x raised to y ,c program to find...
-
C program to reverse the array element
-
C program using function to print reverse the numb...
-
C program to search element in array and display ...
-
c program to print pascal triangle with source cod...
-
c program to check string palindrome or not
-
C program to find largest of two number
-
c program to find largest and smallest element of ...
-
c file handling programs to count number of lines ...
-
c file handling programs to count number of lines
-
C program to accept a string and convert it in to ...
-
C simple program of matrix multiplication
-
c program to accept a number and convert it in to ...
-
c program to find the occurrence of the in given s...
-
write c program to print string in descending and ...
-
write c file handling program to copy file using u...
-
c program file handling program to count no of spa...
-
c program to find smallest element in an array usi...
-
write a c program to find the sum of digits of a n...
-
c program to print fibonacci series using recursio...
-
Define storage classes in c ?
-
What is mean by Type Casting in c programming