answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Where have rivets been used int he past?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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


How has centrifugation been used in home applications?

dirt from clothes int the washing machine


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


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


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;


What explorers used the astrolabe?

Ferdinand Magellan used this int\strument


How long has Andy Murray been int he Olympics?

H has never been in the olympics.


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 }


Does int mean interface in programming language?

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


Which Keyword is used to return some value from a function?

return var_name; e.g int fun() { int x=...; return x; }