Reading which Character Key was pressed
Answer / jagdish patel
#include<stdio.h>
#include<conio.h>
void main()
{
char character;
character=getch();
if(isalpha(character))
printf("alpha");
else if(isdigit(character))
printf("digit");
else
printf("pressed key is special key");
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
program that will accept any name and will be stored in an array
Reading which Character Key was pressed
write a program to detect the user's browser ?
program to bring a window to the front
program to show a progress bar
how to delay a function call ?
code to get the coordinates of a Click Event
write a code to generate pseudorandom numbes
communication between main window and new windows
code to positioning of window in certain dimensions
create a slide show
code to keep a page Out of the browser history