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

Find the O/p of the following
1)
#include
int main()
{
char c='1';
int j=atoi(c);
}

Answer Posted / arka sen

it will give the ASCII Value of char C.

Is This Answer Correct ?    10 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is 1f in c?

2570


What is f'n in math?

1010


What is a char in c?

931


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

1264


How can you be sure that a program follows the ANSI C standard?

1560


What is meant by operator precedence?

1096


What are categories used for in c?

1035


Can you apply link and association interchangeably?

1071


Explain about block scope in c?

1031


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

1225


How can a program be made to print the name of a source file where an error occurs?

1175


What is echo in c programming?

964


What is the advantage of an array over individual variables?

1187


When do we get logical errors?

1072


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

2434