answersLogoWhite

0

What is a ponters in c-programming?

User Avatar

Anonymous

16y ago
Updated: 8/17/2019

with the help of pointers we able to store the memory location of any variable. In c the pointer variable is use to store the memory location of any variable. The pointer variable is define as a simple variable but in pointer variable use a special "*" character at the left most side of name of pointer variable. If any variable name have * it means it is a pointer variable it hold the memory location of variable.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is the function ponters?

The memory address of a function.


What are words that rhyme with number but are basketball word?

three ponters


How do you write a c program sum of ODD Numbers in the Given Range?

Reference: cprogramming-bd.com/c_page4.aspx#ODD%20 Numbers


How do you write a c program sum of ALL Numbers in the Given Range using for loop?

Poor Boy. We do not do your homework here.


Where can one find information on codeblocks?

To find information on codeblocks, one can go to the website Codeblocks. As well, one can go to Stack Overflow, Sci Brooklyn Cuny Edu, CPlusPlus, Ogre3d, and Cprogramming.


When it is more appropriate to use a file system rather than a database?

One answer is when you are dealing with image files like JPGs or PDFs. One mistake I see people making is storing image files within a database. That's a poor design. They bloat the database and can't be indexed. You should store the images in a file system and simply put ponters in the database.


Where can you practice c plus plus is there a website that can be useful?

C Plus Plus, or C++ is an intermediate-level computer programming language. It was developed by Bjarne Stroustrup starting in 1979. You can practice C Plus Plus at a site such as Cprogramming.


Write aC program to find whether a given number is even or odd without using arithmetic operators?

#includemain(){int i,j; /*int type variables*/scanf("%d",i);/*read i value*/j=i&1; /*perform logical and operation to find 1at lsbif(j==0)printf("even");elseprintf("odd");getch();}One more example found at "c programming"web: cprogramming-bd.com/c_page4.aspx#ODD%20Numbers


How do you use sscanf() in C file handling?

You can find in-depth information on how to use sscanf() in C file handling on crasseux.com/books/ctutorial/sscanf.html One more useful website of learning basic of "c programming" is cprogramming-bd.com


Write a C plus plus program to read two integers and display them Use cin and cout statements?

#include#includevoid main(){int a,b;clrscr();printf("Enter two numbers: ");scanf("%d%d",&a,&b);printf("Multiplication of %d and %d is = %d ",a,b,a*b);getch();}