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...

Unsigned char c;
for ( c=0;c!=256;c++2)
printf("%d",c);

No. of times the loop is executed ?

Answer Posted / manish soni

IT SHOW ACTUAL O/P.
main()
{
int c;
int i=1;
for ( c=0;c!=256;c+=2)
{
printf("%d=%d\n",i,c);
i++;
}
getch();
}

MANISH SONI
[GYAN CORPORATION,CHANDIGARH]

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a pointer on a pointer in c programming language?

1093


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

1456


C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions

1004


A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles

1122


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

1087


What is the purpose of sprintf?

1070


Are bit fields portable?

1110


i want to know the procedure of qualcomm for getting a job through offcampus

2409


Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

1204


What is the use of typedef in c?

994


Can we initialize extern variable in c?

1078


Can you return null in c?

1095


How do I read the arrow keys? What about function keys?

1021


How can I discover how many arguments a function was actually called with?

1022


What are the two types of functions in c?

945