finding the type of the variable given in the program

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • doubtiee
    New Member
    • Jul 2012
    • 1

    #1

    finding the type of the variable given in the program

    for ex: say i'm declaring two variables under int type and some 3 under char,my output should be lyk this: 2 variables in int
    and 3 var of type char...(input to the main program is actually another program where these 2 int and 3 char are defined).
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    No can do.

    The compiler converts your code to binary so there is no "int" to look up.

    Comment

    Working...