answersLogoWhite

0

pollution is the main human caused problem in the ocean.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is the smallest ocean int the world?

The Arctic Ocean is the smallest ocean


What ocean zone does lobster live in?

int


What is the population int he Atlantic ocean?

No idea =P


What is a body of land jutting int a lake or ocean called?

a peninsula


What are fast moving rivers in the ocean?

Fast moving rivers int he ocean are called currents. Currents are caused by the Earth's rotation. An ocean current is continuous.


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;


Do more rivers int the US flow into the Atlantic or Pacific Ocean?

More rivers flow into the Atlantic than the Pacific.


What are syntax problems?

Syntax errors are spelling mistakes or incorrect markup within the code. E.g. In c, the following is correct: int a; However, the following are all examples of syntax errors: inta ; itn a; int a


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);


Where was Bethany Hamilton raised?

Princeville, on the north shore of the island of Kauai, in the state of Hawaii, int he middle of the Pacific Ocean


Get size of int using sizeoff?

printf ("sizeof (int) = %d\n", (int)sizeof (int));


C program to find LCMof three integers?

int LCM3 (int a, int b, int c) { return LCM2 (a, LCM2 (b, c)); } int LCM2 (int a, int b) { return a*b/GCD2(a, b); }