Purchase Solution

C++: Pointers

Not what you're looking for?

Ask Custom Question

What is exactly a pointer in C?
What is the significance of a NULL pointer?

Purchase this Solution

Solution Summary

This solution explores the role of pointers in C, in the context of computer science.

Solution Preview

A pointer in C is a variable that holds an address as its value. Usually, when accessing a pointer variable's value you are more interested in the value at the address the variable holds rather than the address itself. For example, consider the following two variable declarations:

int x;
int* p;

The first creates a variable "x" that holds integer values. The second creates a variable "p" that holds ...

Purchase this Solution


Free BrainMass Quizzes
Basic Networking Questions

This quiz consists of some basic networking questions.

Javscript Basics

Quiz on basics of javascript programming language.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.

Word 2010: Tables

Have you never worked with Tables in Word 2010? Maybe it has been a while since you have used a Table in Word and you need to brush up on your skills. Several keywords and popular options are discussed as you go through this quiz.

Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.