answersLogoWhite

0

What else can I help you with?

Related Questions

Ogunquit is a popular summer resort for artists and for people who love what?

int?


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


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


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 }


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


Explain how int 21h can be used for input output in 8086 microprocessor?

The INT 21H instruction in the 8086 is a software interrupt to vector 21H. In order for it to be used for input/output, the programming that responds to INT 21H must be present. This is part of the Operating System.


What are the applications of void data types inc plus plus?

void data type is used in function declaration. It can be explained by examle void add(int,int); this will tell the compiler that no value is going to be returned by the function. int add(int,int); this indicates that an integer type value will be returned by the function


What data or variable type is used for whole numbers?

int