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

print 1-50 with two loop & two print Statement

Answer Posted / ksambhaji999

For(i=1;i<50;i=i
+2)
{ printf
("%d",i);
for(j=2;j<51;j++)
{ printf
("%d",j);}

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is function prototype?

1211


What is NULL pointer?

1141


How many types of errors are there in c language? Explain

1022


What is the difference between mpi and openmp?

1354


What would be an example of a structure analogous to structure c?

1047


what is a NULL Pointer? Whether it is same as an uninitialized pointer?

1325


how many errors in c explain deply

2134


Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)

2334


What is null in c?

1151


Can main () be called recursively?

1175


What is strcmp in c?

1210


What is data type long in c?

1112


What is variable declaration and definition in c?

962


Explain Basic concepts of C language?

1230


Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.

4253