top of page

Searching-in-2d-array-in-c

  • wrisinsconabgance
  • Feb 1, 2022
  • 1 min read
Jan 17, 2015 — /* · To Search an element in the 2D Array using linear search. · */ · #include · #include · int · int · printf("AIM : To Search an element ...












searching-in-2d-array-in-c


2d array of strings in C. char student[5][20]; First index (row-size) specify number of strings needed & 2nd index (column-size) specifies length of string.. (If you know C, this is not unlike the C syntax for initializing structures.) ... Multidimensional arrays must have matching extents for each dimension. ... Tip: Arrays are not sets; searching for specific array elements can be a sign of database .... Change this: y[j] = j; x[c] = c;. for this: y[count] = j; x[count] = c;. The arrays x and y are your results and they have to be indexed according to the ... 939c2ea5af





 
 
 

Recent Posts

See All

Comments


bottom of page