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

what are enumerations in C

1218


What is the difference between near, far and huge pointers?

1154


How we can insert comments in a c program?

1187


a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler

1128


what is event driven software and what is procedural driven software?

2620


Explain how can you determine the size of an allocated portion of memory?

1150


Can we declare variable anywhere in c?

1034


How do I convert a string to all upper or lower case?

1171


Which control loop is recommended if you have to execute set of statements for fixed number of times?

1408


What are pointers? Why are they used?

1248


What is clrscr in c?

1171


Hi can anyone tell what is a start up code?

2135


Difference between Function to pointer and pointer to function

1130


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.

4256


Dont ansi function prototypes render lint obsolete?

1196