public class A{void A(){System.out.println("Class A");}public static void main(String[] args){new A();}}
What is the output of the following code?#includestdio.hEntered character is :Qint main( ){char ch;printf("entered character is :");scanf("%c",&ch);printf(" ASCII value of character %c is : %d",ch,ch);return 0;}