Home » Code Snippets » C/C++ Code Snippets

C++ - Print the string character by character using pointer

By: Priya Kaushal On 23 DEC 2016

Here, we will learn how to print string character by charter using pointer?

Another concept that we are using in this program is pointer arithmetic, here we will assign the address of string into the character pointer and prints the character by character by increasing pointer.

Consider the following program:

#include <iostream>

using namespace std;

int main()
{
	char name[]="Priya Kaushal";
	char *ptr=name;
	
	while(*ptr!=NULL){
		cout<<*ptr;
		ptr++;
	}
	
	cout<<endl;
	return 0;	
}

Output

Priya Kaushal

Remember, after reaching the end of the string ptr will no more point the same string.


COMMENTS




Copyright © 2024 www.includehelp.com. All rights reserved.