Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,039 questions

40,894 answers

573 users

How to display the first letter of array of pointers to strings with pointers to pointers in C

1 Answer

0 votes
#include <stdio.h>

int main(int argc, char **argv) 
{ 
    char *scientists[] = {
                            "Albert Einstein",
                            "Isaac Newton",
                            "Marie Curie",
                            "Galileo Galilei",
                            "Charles Darwin"
                         };
                        
    for(int i = 0; i < 5; i++)
    {
        putchar(**(scientists + i));
        putchar('\n');
    }
      
        
    return 0;
}

/*
run:

A
I
M
G
C

*/

 





answered Jun 30, 2015 by avibootz
...