This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basics": { | |
"name": "Alex Profir", | |
"label": "Software Engineer", | |
"picture": "https://example.com/photo.jpg", | |
"email": "alexprofir512@gmail.com", | |
"phone": "+40724409740", | |
"summary": "I’m a frontend and mobile-focused full stack developer with solid backend experience. I build applications from the ground up with a strong emphasis on usability, client satisfaction, and product quality. I’m highly collaborative, enjoy working in team environments, and remain flexible when exploring new opportunities.", | |
"location": { | |
"address": "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
void map(int *array, int n, int (*op)(int), int *result) | |
{ | |
for (int i = 0; i < n; i++) | |
{ | |
result[i] = (*op)(array[i]); | |
} | |
} |