answersLogoWhite

0

South America, Africa, Australia and Antarctica

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

When it is summer in the northern hemisphere it is spring int he southern hemisphere?

No


Is Sidney northern or southern hatmisphier?

if you mean Sidney Australia it is int he southern hemisphere


How does the air chase itself in a tornado?

A tornado forms from the rotating updraft of a thunderstorm. The updraft of the tornado creates low pressure that causes air to spiral inward (usually counterclockwise int he northern hemisphere and clockwise in the southern) and then upward.


Where is it 9 hours earlier then Dallas int he northern hemisphere?

In the northern hemisphere, it is 9 hours earlier than Dallas in Moscow, Russia.


What are the 5 landforms located int eh new western hemisphere?

fnbthn6t hn6ij7kymj thfc


Is there a imaginary line that divides the earth int a western and eastern hemisphere?

Yes, the Prime Meridian is an imaginary line that divides the Earth into the Western Hemisphere and the Eastern Hemisphere. It runs through Greenwich, England.


How many times does 12 go int 48?

Exactly four times.


30 examples of variables?

int n1; int n2; int n3; int n4; int n5; int n6; int n7; int n8; int n9; int n10; int n11; int n12; int n13; int n14; int n15; int n16; int n17; int n18; int n19; int n20; int n21; int n22; int n23; int n24; int n25; int n26; int n27; int n28; int n29; int n30;


What are the four integral types in C plus plus?

There are far more than 4 integral types in C++. As of C++11, there were 27 integral types: bool char signed char unsigned char wchar_t char16_t char32_t short signed short unsigned short short int signed short int unsigned short int int signed int unsigned int long signed long unsigned long long int signed long int unsigned long int long long signed long long unsigned long long long long int signed long long int unsigned long long int


How do you write a program to find the largest of four numbers using nested if else statements?

int largest_of_four (int a, int b, int c, int d) { if (a>b && a>c && a>d) return a; else if (b>c && b>d) return b; else if (c>d) return c; else return d; } Note that the "else" clauses are actually redundant here because we can rewrite the function as follows: int largest_of_four (int a, int b, int c, int d) { if (a>b && a>c && a>d) return a; if (b>c && b>d) return b; if (c>d) return c; return d; }


How many syllables does obedient have?

(4) O-bee-dee-int.


How do declare function pointer having two integer parameters and returning integer pointers?

// declare a function int* function(int, int); or int* (function)(int, int); // declare a pointer to a function int* (*pointer_to_function)(int, int);