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 can i get the output
54321
4321
321
21
1

in c programming........???? pls help......

Answer Posted / dattatreya

#include<stdio.h>
int main(){
char a[6]="54321";
char *p=a;
while(*p){
printf("%s ",p++);
}
return 0;
}

Is This Answer Correct ?    9 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how can you restore a redirected standard stream?

1158


What is the g value paradox?

1251


how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions

3233


How do you override a defined macro?

1317


Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.

1294


What is wrong with this statement? Myname = 'robin';

1394


Explain logical errors? Compare with syntax errors.

1128


in linking some of os executables are linking name some of them

2201


What is a function simple definition?

1170


Explain how can I make sure that my program is the only one accessing a file?

1280


How does pointer work in c?

1200


what are bit fields? What is the use of bit fields in a structure declaration?

2205


What is the equivalent code of the following statement in WHILE LOOP format?

1346


What is a const pointer in c?

1182


Explain pointer. What are function pointers in C?

1145