Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

My code has a segmentation fault which I can't figure out why. #include #include #include char* alphabets(char string[]){ char *new_string; for(int i = 0;string[i]!='0';i++){ if(isalpha(string[i])){

image text in transcribed

My code has a segmentation fault which I can't figure out why.

#include #include #include

char* alphabets(char string[]){ char *new_string;

for(int i = 0;string[i]!='\0';i++){ if(isalpha(string[i])){ new_string[i]=string[i]; } }

return new_string; }

int main() { char test[]="Hello, World!"; char *new_arra=alphabets(test); printf("%s",new_arra); printf(" ");

return 0; }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Object Databases The Essentials

Authors: Mary E. S. Loomis

1st Edition

020156341X, 978-0201563412

Students also viewed these Databases questions

Question

Differentiate tan(7x+9x-2.5)

Answered: 1 week ago

Question

Explain the sources of recruitment.

Answered: 1 week ago

Question

Differentiate sin(5x+2)

Answered: 1 week ago

Question

Compute the derivative f(x)=1/ax+bx

Answered: 1 week ago

Question

Identify and control your anxieties

Answered: 1 week ago

Question

Understanding and Addressing Anxiety

Answered: 1 week ago