English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Hi! frnds,
can anyone plz. sugest some sites on which i can get to solve some example programs in "POINTERS" in C , and also how to draw the flowchart and algorithm of a pointer program.please help....!!
thank u!

2007-03-18 00:13:44 · 7 answers · asked by rich2garam 1 in Computers & Internet Programming & Design

7 answers

See there are no specific sites for this but try some good books ,online www.cplusplus.com .

2007-03-18 00:23:41 · answer #1 · answered by Anonymous · 0 0

My name deepak I am doing Bca and site by site i have teach C language to Bca and Btech student.I have to tell
U because i don't thing that U have go for web site for
Pointer problem.It better to built up Ur confidence because
according to me if anybody want to learn C language(pointer).
First step is that U have more than Two Books at a
time.
Second step never read the theory directly move to program Because u r waisting Ur time in reading theory.
Third daily do only two to three question because if U completed whole exercise in one day u are totally confuse.
Forth Al way do first dry run mean try do solve the question in the copy first.
fifth than make the program.
Sixth always solve the error using top down approach.
seven finally U know the pointers.

2007-03-18 08:58:22 · answer #2 · answered by Anonymous · 0 0

There are no algorithms of "pointer programs" that I know of.

A pointer is basically a description of an address. For instance, and this is a bit contrived, but if you gave someone your house, they would have your house. But if you gave them the ADDRESS of your house, then they could still get the house if they want, but they wouldn't have to carry around the whole house.

Basically pointers are addresses of places in memory, so if you want to pass along a chunk of memory representing the text of a book, you can either pass along the whole text - which might be huge, and time-consuming to pass - or you could just pass the ADDRESS of the text. If the recipient needs to get at the text, it's a small leap once you have the address, and it saves passing all that information around, which chews up resources.

2007-03-18 00:24:42 · answer #3 · answered by T J 6 · 0 0

Pointers are actually poniting where you r going to save u'r information in c language, thus they cannot be shown on the flowchart or define using algorithm

i used www.borland.com, micrsoft sites to understand how i can use the pointers, the r deficult but if u try hard u well be able to understand them easily,

2007-03-18 00:35:51 · answer #4 · answered by Anonymous · 0 0

The Capitol Album- The Beatles Champ- Tokyo Police club Como Te Llama- Albert Hammond Jr Congratulations- MGMT Cripple Crow- Devendra Banhart. ......yeah. And my first 5 songs commencing with C are: call An Ambulance- Albert Hammond Jr call Me lower back- The Strokes can no longer purchase Me Love- The Beatles the cardboard Cheat- The conflict and..Carmencita- Devendra Banhart.

2016-10-18 23:48:05 · answer #5 · answered by fanelle 4 · 0 0

Hi,

I found the following sites with a very good examples of Pointers using C and C++

http://cis.stvincent.edu/html/tutorials/swd/pointers/pointers.html

http://www.cs.cf.ac.uk/Dave/C/node10.html#SECTION001000000000000000000

http://www.augustcouncil.com/~tgibson/tutorial/ptr.html

2007-03-18 00:31:39 · answer #6 · answered by Mohammad 1 · 0 0

Hi,
if u use an under-dos C, maybe code below will explain lot of things to u:

#include
#include

#pragma hdrstop

int add1(int* a, int* b)
{
return *a + *b;
}

int add2(int& a, int& b)
{
return a + b;
}

constream c;

void main()
{
int a, b;
a = 1;
b = 6;
c.clrscr();
c << add1(&a, &b) << endl;

c << add2(a, b);
getch();
}


HTH,

niccie_11

2007-03-20 22:55:34 · answer #7 · answered by niccie_11 2 · 0 0

fedest.com, questions and answers