answersLogoWhite

0

What does int A mean in c language?

Updated: 8/10/2023
User Avatar

Wiki User

12y ago

Best Answer

It is easy to tell with function printf:

int unknown_value;

...

printf ("unknown value is %d\n", unknown_value);

Note: the typical value-range for type integer is -32768..32767 (16 bits), or -2147483648..2147483647 (32 bits).

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

there are data types in every programming language which tells what type of data is the user dealing with, int means integer or in other words whole numbers, so when you write int A, you are telling the compiler that you need a space in memory to store an integer and name it as A. this means when you again want to retrieve the value you will use A as a refrence to it.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

int is a keyword that refers to a datatype in C Programming.

For ex.

include<stdio.h>

main()

{

int j=5;

}

Here j is an integer variable.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

A data-type, short for integer.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

Because programs often deal with integer numbers.

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

Data-type.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does int A mean in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Int a is literal in C language or not?

int a; -- variable definition"int a" -- string literal


What is the topNet class that everything is derived from in c?

C language: int (but C is NOT a .net language) C# language: object or System.Object


What is int in 'c' language?

data-type


What is mean by int 86 in c language?

int86 is a function in TurboC, header dos.h, consult the built-in help.


What is segmentation faults in c language?

Example: int *p= (int *)-1; *p= 0;


How do you add two numbers in c language?

int a = 1 + 2; ---------- int a = 1; int b = 2; a += b;


Do some simple example about prototype in c language?

int foo (void); void bar (int);


How do you write palindrome program in c language?

int pallindrom(int p){ /*write all logic*/ }


In c language size of data type int?

printf ("sizeof (int) is %d bytes", (int)sizeof (int)); Most likely it will be 2 or 4.


Why only three types of pointer variable in c language?

I have no idea what you mean by that... Some examples for pointers of different types: int *intptr; char *charptr; void *generic_ptr; FILE *stdin; int (*funptr)(int, char **);


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


What is consonants in c language?

I think you mean constants. A constant is a variable that can not have its value changed at run time eg. const int a = 100;