Introduction To StringsIntroduction To StringsThe way a group of integers can be stored in an integer array, similarly a group of characters can be stored in a character array . Character array are often called strings.A string constant is a one-di…Read More
Initialization Of Two-Dimentional ArraysInitialization Of Two-Dimentional Arrayslike the one-dimensional arrays,two-dimensional arrays may be initialized by following their declaration with a list of initial values enclosed in braces.for example, static int ta…Read More
Multi Dimensional arraysMulti Dimensional arraysC allows arrays of three or more dimensions. The exact limit is determined by the compiler.The general form of multi-dimensional array is type array-name[s1][s2][s3]----------------------[sm]; whe…Read More
0 comments:
Post a Comment