answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What was the area of the habitation int the past for the inuit?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a program to accept length and breadth of a rectangle and then calculate its area and print it?

int length int breadth int area= (length x breadth) print area


How do you find the area of circle using function?

#include<stdio.h> main() { int radius; float a1; float area(int r); printf("Enter the r value"); scanf("%d",&radius); a1=area(radius); printf("The answer=%d",a1); } float area(int r) { float a2; a2=3.14*r*r; return(a2); } getch();


How do you write a java program to find a area of geometrical figure using method overloading?

import java.io.*; public class Driven { static void main(String args[])throws IOException { InputStreamReader read=new InputStreamReader(System.in); BufferedReader in= new BufferedReader(read); System.out.println(" please enter length"); int a=Integer.parseInt(in.readLine()); System.out.println(" please enter breadth"); int b=Integer.parseInt(in.readLine()); int c=a*b; System.out.println("The area of rectangle is "+c); } } // when you run this program then in main menu to run this program write {} and then press ok


What happened in Yellowstone's past?

There's a super-volcano there, which has erupted before, destroying everything in int path.


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;


How many volcanoes have been active in the western US in the past 2000 years?

there's 500 volcanoes that have been active int he past 2000 years


C program to calculate area of circle?

/*to find the area of a circle*/ #include<stdio.h> #include<conio.h> main() { int r; float a; print f ("Enter r value \n"); scan f ("%d", &r); a=3.14*r*r; print f("area=%f",a); }


Formula for radius in turbo c?

#define PI 3.1416 int r,area; area=2*PI*r


Does it matter which way you divide a complex figure int simple polygons to find the area?

no


Program to find area of circle using class in c?

class area{ int l,w,a; a=i*w; printf"area of rectangle is= %d",a; endl; }


What does this function do and what its syntax in average?

The average value of a function is the equivalent area of the function expressed like a rectangle .- Thus If you have an area A from limits a and b , the equivalent is : (b-a) H ( rectangle area ) = INT f(x) dx , then average H is H= ( INT f(x) dx) /(b-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);