Skip to content

Instantly share code, notes, and snippets.

View alex-profir's full-sized avatar

Alex Profir alex-profir

View GitHub Profile
{
"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": "",
#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]);
}
}