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 / manishsoni

The program is as:
------------------------------------------------------------
#include<stdio.h>
#include<conio.h>
int main()
{
unsigned char c;
for(c=0;c!=256;c++2)
{
printf("%d",c);
printf("\n");
}

getch();
}

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How important is structure in life?

1148


What is c language used for?

1028


Explain the use of 'auto' keyword

1171


Explain the properties of union. What is the size of a union variable

1248


What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?

1486


Does c have circular shift operators?

1299


Explain what is a program flowchart and explain how does it help in writing a program?

1143


Combinations of fibanocci prime series

1666


What are different types of pointers?

1109


Write a code to determine the total number of stops an elevator would take to serve N number of people.

1309


Differentiate between the expression “++a” and “a++”?

1309


What is the difference between break and continue?

1683


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

1445


which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +

1781


what is use of malloc and calloc?

1953