answersLogoWhite

0

Madhyamik , higher secondary , graduate

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What are the major elements of a high quality of life?

Some of the major elements include, but are not limited to: 1. The ability to get quality health care, 2. Access to effective education, and 3. The removal and appropriate treatment of waste.


What are the 3 major categories of the elements?

Metals, non-metals and noble gases.


Name the three main elements of WHIMS?

three elements of WHMIS: 1) Labels, 2) Material safety data sheets (MSDS), 3) Education and Traning.


What is major elements in planning a tourism destination?

major elements in planning tourism destination


What are the major elements included in biosphere?

The major elements in the biosphere are carbon, nitrogen, phosphorus, and oxygen. It also includes several trace elements.


What is the major goal of physical education and fitness?

the major goal of the physical education is to become healthy and strong


Elements 2 and 3 are major building blocks in glucose fructose and sucrose. What are these elements?

Carbon and hydrogen


Is private education fair?

Private education brings quite a lot of unfair elements


What are the major elements that form the glucose molecules?

The major elements that form the glucose molecule are carbon, hydrogen, and oxygen.


How does a Education officer use science?

By shoving its elements into his as*


What are the following major elements of a high quality of life?

Some major elements of a high quality of life include good physical health, emotional well-being, strong relationships and social connections, financial security, access to education and personal growth opportunities, a sense of purpose and fulfillment, and a safe and supportive environment.


Write a C program to accept the elements of a 3 x 3 matrix and find its sum of the major diagonal elements The program should print the given matrix along with its sum of the major diagonal elements?

#include <stdio.h> #include <conio.h> void main() { int d[3][3] = { 1, 2, 6, 3, 8, 5, 5, 6, 7 }; int k = 0, j = 0; int sum1 = 0, sum2 = 0; for (j = 0; j < 3; j++) { for (k = 0; k < 3; k++) printf(" %3d", d[j][k]); printf("\n"); } for (j = 0; j < 3; j++) { sum1 = sum1 + d[j][j]; } k = 3 - 1; for (j = 0; j < 3; j++) { if (k >= 0) { sum2 = sum2 + d[j][k]; k--; } } printf("Sum of First diagonal= %d\n", sum1); printf("Sum of Second diagonal= %d", sum2); getch();