Online Courses
Free Tutorials  Go to Your University  Placement Preparation 
Best Products for Students
0 like 0 dislike
233 views
in GTU B.E. (CSE-I-Sem) Programming For Problem Solving Lab by Goeduhub's Expert (7.1k points)

Write a program to access elements using pointer in  C programming

Goeduhub's Top Online Courses @Udemy

For Indian Students- INR 360/- || For International Students- $9.99/-

S.No.

Course Name

 Coupon

1.

Tensorflow 2 & Keras:Deep Learning & Artificial Intelligence || Labeled as Highest Rated Course by Udemy

Apply Coupon

2.

Complete Machine Learning & Data Science with Python| ML A-Z Apply Coupon

3.

Complete Python Programming from scratch | Python Projects Apply Coupon
    More Courses

1 Answer

0 like 0 dislike
by Goeduhub's Expert (7.1k points)
edited by
 
Best answer

Print String Using Pointer

In this program we are going to print a string on output window inserted by user by using pointer. Following program is the implementation of this theory.

Example :

#include<stdio.h>
#include<conio.h>
void main()
{

//Declaration of string and pointer
char str[100];
char *ptr;

//taking input from user by gets() function which takes input string with spaces
printf("Enter any string: ");
gets(str);

//Assigning string to the pointer
p=str;

printf("The input string is: ");

//'\0' signifies end of the string
while(*p!='\0')
printf("%c",*p++);

getch();
}

Output :

Output of above program showing entered string


For More GTU C Programming Lab Experiments Click Here

3.3k questions

7.1k answers

394 comments

4.6k users

Related questions

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy || Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 
...