Skip to content

Instantly share code, notes, and snippets.

View vladfulgeanu's full-sized avatar
💾
Waiting for Github Stories

Vlad Fulgeanu vladfulgeanu

💾
Waiting for Github Stories
  • Bucharest, Romania
View GitHub Profile
@vladfulgeanu
vladfulgeanu / char matrix
Created June 11, 2012 10:34
vector of strongs/ char matrix
#include <stdio.h>
#include <string.h>
void print(char ** x){
for(int i = 0; i < strlen(x); i++)
printf("%s\n", x[i]);
}
int main(){
char **x = {"ana", "are", "mere"};
print(x);
getchar();