answersLogoWhite

0

What else can I help you with?

Related Questions

How has centrifugation been used in home applications?

dirt from clothes int the washing machine


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

There have been around 50 active volcanoes in the western US in the past 2000 years. These include both major and minor volcanic events, with some volcanoes experiencing more frequent eruptions than others.


Declare an integer array marks that can be used to store 3 elements?

int[] marks = new int[3]; int marks[3];


What is java int?

This groups includes byte,short,int and long.Integer data type is used for storing integer values.The size of the int is 32 bit.The range of the int is -2,147,483,648 to 2,147,483,648


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 do you swap two numbers in a C program?

Ellipses (...) used to emulate indentation... swap(int *a, int *b) { ... int temp; ... temp = *a; ... *a = *b; ... *b = temp; }


How long has Andy Murray been int he Olympics?

H has never been in the olympics.


What explorers used the astrolabe?

Ferdinand Magellan used this int\strument


How to create a function?

You create a function by declaring it and defining it. A trivial example... int myfunction (int myargument) { /* declaration */ ... some code, ultimately returning an int /* definition */ } You could also declare separately from the definition, a technique often used in header files... int myfunction (int myargument); /* declaration - note the semi-colon */ ... later ... int myfunction (int myargument) { /* definition */ ... some code, ultimately returning an int }


How do you find GCD of numbers?

This question has been asked ten thousands time, but never mind... int gcd (int a, int b) { if (a<0) a= -a; if (b<0) b= -b; while (b > 0) { int tmp = b; b = a % b; a = tmp; } return a; }


Does int mean interface in programming language?

No. In most programming languages int is a keyword used to represent integer numeric values.