Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which header file is essential for using strcmp function?

1498


What is #error and use of it?

1290


Why we write conio h in c?

1046


What is the benefit of using #define to declare a constant?

1106


What is "Duff's Device"?

1175


Differentiate call by value and call by reference?

983


What are the types of bitwise operator?

1125


What is the scope of local variable in c?

1144


Should I learn c before c++?

1245


i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....

1989


A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference

1118


A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream

1186


What is difference between structure and union with example?

1079


What is difference between array and structure in c?

1204


write a program to print data of 5 five students with structures?

2057