Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: GSSV
  • Order by date
  1. GSSV

    Strange problem assigning elements of string arrays!!!

    I'm unable to modify any of the individual elements in String arrays, though the array is not declared 'const' . Eg. char * Strings[] = { "sunday", "monday", "tuesday", "wednesday", "thursday&quot...
  2. GSSV

    Array Access using Index : why is a[2] equivalent to 2[a]?

    Why is it possible to access an nth element of an array using index as a[n] as well as n[a]? Eg: int a[4]={1,2,3,4]; The second element can be accessed both as a[2] (the normal way!!) and also as 2[a] Array elements referenced by way of index is resolved by pointer arithmetic. But this still...

Part and Inventory Search

Back
Top