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.
The memory address of a function.
three ponters
Reference: cprogramming-bd.com/c_page4.aspx#ODD%20 Numbers
Poor Boy. We do not do your homework here.
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.
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.
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.
#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
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
#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();}