answersLogoWhite

0

main void void void (void)

{ float temp1 [13]= {1,4,2,3,4,5,7,88,9,4,3,23,12};

User Avatar

Wiki User

11y ago

What else can I help you with?

Continue Learning about Engineering

How do you convert a string into a character array?

A string is, by definition, a character array. No conversion is required.


How write a program that display today temperatures and their average in c plus plus?

#include<iostream> double celsius(double fahrenheit) { return((fahrenheit-32)*5/9); } double fahrenheit(double celsius) { return(celsius*9/5+32); } int main() { double f, c; c = celsius( 32.0); // c 212.0 return(0); }


Differentiate single dimensional array to double dimensional array?

A single dimensional array is an array of items. A two-dimensional array is an array of arrays of items.


What is meant by irregular dimensional array?

An irregular dimensional array is a special type of multi-dimensional array.First we must understand that a multi-dimensional array is just an array of arrays. Each element in the array is, itself, an array of elements.A regular multi-dimensional array will be an array of size n, with each element containing a separate array of size m. That is, each sub-array has the same size.An irregular multi-dimensional array will be a multi-dimensional array in which each sub-array does not contain the same number of elements.Regular array:array[0] = new array{0, 1, 2}array[1] = new array{3, 4, 5}array[2] = new array{6, 7, 8}array[3] = new array{9, 10, 11}This regular array is an array of size 4 in which each sub-array is of size 3.Irregular array:array[0] = new array{0, 1, 2}array[1] = new array{3, 4}array[2] = new array{5, 6, 7}array[3] = new array{8, 9, 10, 11}This irregular array is an array of size 4 in which the size of each sub-array is not the same.


How do you swap two adjecent no in array in c?

Option 1) Use a temporary variable: int x = array[i]; array[i] = array[i+1]; array[i+1] = x; Option 2) Use bit operators: array[i] ^= array[i+1] ^= array[i];

Related Questions

How do you convert a string into a character array?

A string is, by definition, a character array. No conversion is required.


How do you convert a character into a string?

A string is, by definition, a character array. No conversion is required.


What does the term raid file recovery mean?

RAID is the acronym for redundant array of independant discs, this refers to the way computers store information and programmes. Sometimes a file for a particular progamme is corrupt or missing, by tracing elements of the file it can sometimes be restored.


What kind of bomb explodes in Fahrenheit 451?

one single bomb does not explode in fahrenheit 451, rather, an array of bombs, being dropped from many bombing planes.


How write a program that display today temperatures and their average in c plus plus?

#include<iostream> double celsius(double fahrenheit) { return((fahrenheit-32)*5/9); } double fahrenheit(double celsius) { return(celsius*9/5+32); } int main() { double f, c; c = celsius( 32.0); // c 212.0 return(0); }


How do you change 'hElLo WoRlD' to 'HeLlO wOrLd' in PHP?

The process will work similar to a cryptoquip. First, you need to set up a conversion array. Then, run a strtr() and make the conversion into a new string. The code will look something like this: $input = "hElLo WoRlD"; $convert = array('A' => 'a', 'B' => 'b' ... ... 'Z' => 'z', 'a' => 'A' ... ... 'y' => 'Y', 'z' => 'Z'); $output = strtr($input, $convert); You can also look into generating the array by other means, such as looking through char codes. It is important to make sure that the array keys are the start letters and the array values are the end letters. It does not matter in what order you populate the array, as long as all letter pairs (upper-to-lower and the other way too) are present.


What is the tempreture on Pluto?

The temperature on Pluto is about as cold as physically possible. The planet receives almost no heat from the Sun, so most of its atmosphere is perpetually frozen. It also has no discernible internal heat. Scientists using the Submillimeter Array have discovered that Pluto's maximum temperature is about 43 K (−230 °C), 10 K colder than expected.


Differentiate single dimensional array to double dimensional array?

A single dimensional array is an array of items. A two-dimensional array is an array of arrays of items.


What is meant by irregular dimensional array?

An irregular dimensional array is a special type of multi-dimensional array.First we must understand that a multi-dimensional array is just an array of arrays. Each element in the array is, itself, an array of elements.A regular multi-dimensional array will be an array of size n, with each element containing a separate array of size m. That is, each sub-array has the same size.An irregular multi-dimensional array will be a multi-dimensional array in which each sub-array does not contain the same number of elements.Regular array:array[0] = new array{0, 1, 2}array[1] = new array{3, 4, 5}array[2] = new array{6, 7, 8}array[3] = new array{9, 10, 11}This regular array is an array of size 4 in which each sub-array is of size 3.Irregular array:array[0] = new array{0, 1, 2}array[1] = new array{3, 4}array[2] = new array{5, 6, 7}array[3] = new array{8, 9, 10, 11}This irregular array is an array of size 4 in which the size of each sub-array is not the same.


How do you swap two adjecent no in array in c?

Option 1) Use a temporary variable: int x = array[i]; array[i] = array[i+1]; array[i+1] = x; Option 2) Use bit operators: array[i] ^= array[i+1] ^= array[i];


What is array literal in as2?

An array literal is a comma-separated list of the elements of an array. An array literal can be used for initializing the elements of an array.


How do you swap rows in 2 dimensional array in Java?

[]temp = array[1] array[2]=array[1] array[1]=[]temp