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

which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

1727


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

1161


What does c value mean?

1202


Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

1098


write a program to concatenation the string using switch case?

2109


What is 2c dna?

1083


How can you increase the allowable number of simultaneously open files?

1164


Explain can you assign a different address to an array tag?

1054


What is the difference between printf and scanf )?

1100


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

1061


What does *p++ do? What does it point to?

1065


Explain the difference between the local variable and global variable in c?

1077


What is assert and when would I use it?

1015


Differentiate between a structure and a union.

1292


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

1727