Lukas Rotermund<p>```c<br><a href="https://social.tchncs.de/tags/include" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>include</span></a> <stdio.h><br><a href="https://social.tchncs.de/tags/include" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>include</span></a> <string.h></p><p>int main() {<br> char bucketList[10][100];<br> int count = 0;</p><p> strcpy(bucketList[count++], "Meet Brian Kernighan and Professor Brailsford to talk about C, Unix, and computer history");</p><p> strcpy(bucketList[count++], "Give a talk about Go, PHP, Linux or C");</p><p> ...</p><p> for (int i = 0; i < count; i++) {<br> printf("%d. %s\n", i + 1, bucketList[i]);<br> }</p><p> return 0;<br>}<br>```<br><a href="https://social.tchncs.de/tags/C" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>C</span></a> <a href="https://social.tchncs.de/tags/brian_kernighan" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>brian_kernighan</span></a> <a href="https://social.tchncs.de/tags/professor_brailsford" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>professor_brailsford</span></a> <a href="https://social.tchncs.de/tags/computerphile" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>computerphile</span></a></p>