Sunday, September 18, 2016

Flowchart to print A to Z.


Flowchart to print A to Z using Raptor Tool.


Output of the Flowchart when executed using Raptor tool:

A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, 
----Run complete.  107 symbols evaluated.----



Check more operation flowchart on following link:

5 comments:

  1. explain please ! what do you mean by 'z' and how an alphabet got added to an number

    ReplyDelete
  2. Dear Sourav,

    Computer interprets Alphabets(A to Z) as ASCII numbers (65 to 90). ASCII value of A is 65, B is 66... and Z is 90. Hence, when we add 1 to A (value 65) it becomes B (value 66).

    ReplyDelete
  3. Replies
    1. chr is the variable name created for storing a character.

      Delete