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

program to find the ASCII value of a number

Answer Posted / ketan deshmukh

#include<stdio.h>
#include<conio.h>

void main()
{
int i;
for (i=0;i<255;i++)
printf("ASCII for %d is %c\n",i,i);
getch();
}

Is This Answer Correct ?    8 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler

1051


Explain the difference between strcpy() and memcpy() function?

949


Explain what math functions are available for integers? For floating point?

1062


Why is c so popular?

1118


How can you draw circles in C?

1099


An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above

1104


What is use of #include in c?

1089


What is else if ladder?

965


What is break in c?

984


Explain what is a stream?

1032


What is typedef struct in c?

1000


What is strcpy() function?

1086


Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)

977


a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2715


Where are the auto variables stored?

1090