773 views

4 Answers

Best answer
6 votes
6 votes

Here we don't even need to remember the ASCII codes

For A: ASCII of A = x

For B: ASCII of B = x+1

:

For Z: ASCII of Z = x+25

Hence z-a = x+25 - x = 25 

selected by
0 votes
0 votes
Here value is print by ascii code  conversion . let suppose a=1 and z=26 because total number of character present is 26 a is 1st and z is 26th character of alphabhat

so z-a= 26-1=25

so 25 will be printed
Answer:

Related questions

2 votes
2 votes
5 answers
1
Arjun asked Oct 18, 2016
1,571 views
The value returned by the following code is _____int foo() { int a[] = { 10, 20, 30, 40, 50, 60 }; int *p = &a , *q = &a[5] ; return q-p; }
12 votes
12 votes
1 answer
2
3 votes
3 votes
2 answers
3
7 votes
7 votes
3 answers
4
Arjun asked Oct 18, 2016
1,585 views
The output of the following C program will be _____#include<stdio.h #define type int type foo(type b) { return b*b; } #undef type #define type float int main() { float a ...