Skip to content

Instantly share code, notes, and snippets.

View lirenlin's full-sized avatar

Renlin Li lirenlin

View GitHub Profile
@lirenlin
lirenlin / levmarq - Levenberg-Marquardt in plain C
Created January 25, 2019 18:08 — forked from rbabich/ levmarq - Levenberg-Marquardt in plain C
A simple implementation of the Levenberg-Marquardt algorithm in plain C
This file (with a leading space) exists so that the gist has a sensible name, rather than "LICENSE."
@lirenlin
lirenlin / test1.c
Created February 25, 2018 13:04 — forked from jotux/test1.c
Embedded C Interview Questions
// What is the expected output?
main()
{
int a;
int b;
for (a = 0,b = 0;a < 10,b < 5;a++,b++)
{
printf("%d %d\n",a,b);
}
return 0;