Skip to content

Instantly share code, notes, and snippets.

@XCaminhante
Created February 7, 2021 15:36
Show Gist options
  • Save XCaminhante/7efa70937277cd42de55140d6c5f5dc4 to your computer and use it in GitHub Desktop.
Save XCaminhante/7efa70937277cd42de55140d6c5f5dc4 to your computer and use it in GitHub Desktop.
Lambda em C
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main () {
void (*f)() = // um ponteiro de função
({void _ () {puts("oi");}; &_;}); // uma lambda
f(); // uma chamada de lambda
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment