answersLogoWhite

0

What is poiner value in c?

Updated: 12/14/2022
User Avatar

Wiki User

12y ago

Best Answer

In c a pointer is a variable that points to or references a memory location in which data is stored. Each memory cell in the computer has an address that can be used to access that location so a pointer variable points to a memory location we can access and change the contents of this memory location via the pointer.

Pointer declaration

A pointer is a variable that contains the memory location of another variable. The syntax is as shown below. You start by specifying the type of data stored in the location identified by the pointer. The asterisk tells the compiler that you are creating a pointer variable. Finally you give the name of the variable. type * variable name Example: int *ptr; float *string;

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is poiner value in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the ascii value for c?

The ASCII value for "C" is 67, for "c", 99.


The value of b is half the value of c?

the answer is that c is double the value of b


What is the value of an oil painting by C Melton?

what is the value of a painting by C. Melton


What's 35 c to a decimal?

35 IS a decimal. And the value of 35 c, as a decimal, depends on the value of c.


What is the value of c divided by 30 that equals 12?

The value of c/30 that equals 12 is 12 . In order to make that value, 'c' must be 360 .


What do you mean by a symmetric determinant in a and b and c?

It means that if you substitute b for a, c for b and a for c the value of the determinant remains unchanged.It means that if you substitute b for a, c for b and a for c the value of the determinant remains unchanged.It means that if you substitute b for a, c for b and a for c the value of the determinant remains unchanged.It means that if you substitute b for a, c for b and a for c the value of the determinant remains unchanged.


What is c in numeric value?

C = 100


How do you convert a character into its ascii value?

In C a character already is its ASCII value: char c= 'A'; printf ("%c is %d (0x%x hexa)\n", c, c, c);


What is the value of 10c3?

The answer depends on the value of c!


What are the common factors of C C and 44?

To answer that, you'll need to have a numerical value for the letters.


What is x plus c?

That depends on the value of x, and the value of c. The expression "x + c" can't be simplified, if that's what you mean.


What is default value of formal arguments?

In C, there is no default value for formal parameters. In C++, there can be, but the value is whatever you declare in the function declaration.