The employees of one million dollar profit company TeamZilla organised the strike because they want to have additional salary increment, the strike is continuing for more than a month now. Rathik the CEO of TeamZilla has found the solution to break the strike, so he organised a small technical competition for his employees. Most of the employees who were part of the strike have participated in the technical event announced and in that there was a task of printing the ASCII Value of the character inputted. Can you help them to complete the task and win the competition?
#include <stdio.h>
int main()
{
char Asc;
scanf("%c",&Asc);
printf("%d",Asc);
return 0;
}
Comments
Post a Comment