How to removing white spces in c programming only bu using
loops

Answers were Sorted based on User's Feedback



How to removing white spces in c programming only bu using loops..

Answer / ranj

Aravind has done few mistake in printing the no,
the correct format should like this

int main()
{
int i,number;
char str[10];
gets(str);
number=strlen(str);
printf("String without white space\n");
for(i=0;i<number;i++)
{
if(str[i]==' ');
else
printf("%c",str[i]);
}
}

Is This Answer Correct ?    5 Yes 0 No

How to removing white spces in c programming only bu using loops..

Answer / aravind

int main()
{
int i;
char str[10];
gets(str);
for(i=0;i<=number;i++)
{
if(str[i]==' ')
str[i]=0;
}
printf("string without white space is=%s",str);
}

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More C Interview Questions

What is pointer & why it is used?

0 Answers  


Why functions are used in c?

0 Answers  


What is #include cctype?

0 Answers  


What is hungarian notation? Is it worthwhile?

0 Answers  


What is the explanation for modular programming?

0 Answers  


can we access one file to one directory?

1 Answers  


How can I get random integers in a certain range?

0 Answers  


consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is

4 Answers   TCS,


Explain the difference between fopen() and freopen().

2 Answers  


How can a process change an environment variable in its caller?

0 Answers  


Why is the code below functioning. According to me it MUST NOT.

1 Answers  


WHOT IS CHAR?

4 Answers   TCS,


Categories