Computer Applications

Write down the syntax to return the first occurrence of 'a' in the word "applications".

Java String Handling

58 Likes

Answer


int res = "applications".indexOf('a');

Answered By

37 Likes


Related Questions