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 / babitha

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

void main()
{
char input;
printf("enter an input to get ascii of input");
scanf("%c",&input);
printf("\n ascii of input %c: is %d",input,input);
getch();
}

Is This Answer Correct ?    39 Yes 19 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why isn't any of this standardized in c? Any real program has to do some of these things.

1217


What is the difference between arrays and pointers?

1131


How can you tell whether a program was compiled using c versus c++?

1110


explain what are pointers?

1021


develop algorithms to add polynomials (i) in one variable

2170


find out largest elemant of diagonalmatrix

2256


Why does not c have an exponentiation operator?

1054


What is the difference between text files and binary files?

1351


Explain the bubble sort algorithm.

1078


explain what is a newline escape sequence?

1094


What does the characters “r” and “w” mean when writing programs that will make use of files?

1486


A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream

1177


Which driver is a pure java driver

1626


Explain what is the difference between #include and #include 'file' ?

1029


Write a code to generate a series where the next element is the sum of last k terms.

1229