answersLogoWhite

0

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

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Engineering

How do you assign the value 45 to the variable PassMark using High-level programming language?

In C: int pass_mark; pass_mark = 45; In C++: int pass_mark {45};


Int a 100how many bytes will it occupy?

An int typically occupies 4 bytes of memory in most programming environments, including languages like C, C++, and Java, assuming a standard architecture. Therefore, an int variable, such as int a = 100;, will occupy 4 bytes. However, this can vary depending on the specific programming language and architecture used, so it's always a good practice to check the documentation for the language in question.


What is int dos()?

In programming, particularly in the context of the DOS operating system, int dos() typically refers to a function that retrieves the current DOS version or interacts with DOS services. It may be used in assembly language or C/C++ programs to interface with low-level DOS functionalities. However, the exact implementation and usage can vary depending on the specific programming environment or libraries being utilized. In modern programming, direct interaction with DOS is rare due to the prevalence of more advanced operating systems.


What is int exp called?

In programming, "int exp" typically refers to an integer exponentiation operation, where an integer base is raised to the power of an integer exponent. This operation is often implemented using functions or operators, depending on the programming language. For example, in Python, you can use the ** operator or the pow() function to perform integer exponentiation.


Write a program to determine the weighted arithmetic mean using C language?

#includevoid mean(int[],int);void main(){int n,a[24];printf("Enter the number of terms to find mean\n");scanf("%d",&n);printf("Enter the numbers\n");for(i=0;i

Related Questions

Who are INT and CSM?

integer for int csm is a distrebuted programming language


How do you assign the value 45 to the variable PassMark using High-level programming language?

In C: int pass_mark; pass_mark = 45; In C++: int pass_mark {45};


Int a 100how many bytes will it occupy?

An int typically occupies 4 bytes of memory in most programming environments, including languages like C, C++, and Java, assuming a standard architecture. Therefore, an int variable, such as int a = 100;, will occupy 4 bytes. However, this can vary depending on the specific programming language and architecture used, so it's always a good practice to check the documentation for the language in question.


What is int dos()?

In programming, particularly in the context of the DOS operating system, int dos() typically refers to a function that retrieves the current DOS version or interacts with DOS services. It may be used in assembly language or C/C++ programs to interface with low-level DOS functionalities. However, the exact implementation and usage can vary depending on the specific programming environment or libraries being utilized. In modern programming, direct interaction with DOS is rare due to the prevalence of more advanced operating systems.


Does A high-level programming language let the programmer use formulas?

If by 'formula' you mean 'expression', then yes. Example in C: int x, y; x= 3+2; y= 2*x;


What is object oriented language in c plus plus?

C++ enables object oriented programming through the use of classes, where an object is an instance of a class. A class is essentially a data type, one that can store information (much like an int stores a value) and that provides an interface to that information.


How do you display 'hello world' using c programming language?

#include<stdio.h> int main (void) { printf ("Hello world!\n"); return 0; }


What is int exp called?

In programming, "int exp" typically refers to an integer exponentiation operation, where an integer base is raised to the power of an integer exponent. This operation is often implemented using functions or operators, depending on the programming language. For example, in Python, you can use the ** operator or the pow() function to perform integer exponentiation.


How do you create a function that can pass through parameters in C programming language?

example: static void fun (int x) { printf ("x=%d\n", x); } int main (void) { fun (12); return 0; }


Write a program to determine the weighted arithmetic mean using C language?

#includevoid mean(int[],int);void main(){int n,a[24];printf("Enter the number of terms to find mean\n");scanf("%d",&n);printf("Enter the numbers\n");for(i=0;i


How many bytes are occupied by int data type?

The int data type typically occupies 4 bytes (32 bits) of memory in most programming languages and systems. However, this can vary depending on the architecture and language; for instance, in some environments, it can be 2 bytes (16 bits) or 8 bytes (64 bits). Always check the specific documentation for the programming language and platform you are using.


How do you create methods that does not return a value?

That depends on the programming language. In C, and languages derived from C (including Java), you usually declare the return value as "void", for example: void MyMethod(int par1, int par2) { // Some commands here }