A Lisp-like lightweight functional language on .NET.
This slide contains how to generate expressions from Nesp parser.
ML勉強会 #2 https://ml-lang.connpass.com/event/58151/
https://github.com/kekyo/Nesp
Windows asyncronous I/O discovering in .NET through kernel mode.
Unconference before Microsoft Japan "de:code" 2016 conference.
http://connpass.com/event/29637/
Windows asyncronous I/O discovering in .NET through kernel mode.
Unconference before Microsoft Japan "de:code" 2016 conference.
http://connpass.com/event/29637/
The document defines a student struct with fields for year, class, number, name, stature, and weight. It then declares a student variable called data, initializes its fields, and prints the data using a student_print function. Pointers to student structs are also demonstrated, using the -> operator to access struct fields through a pointer. Finally, file I/O in C is briefly covered, showing how to open, write to, and close a file using fopen, fprintf, and fclose functions.
This document contains information about pointers in C including declaring pointer variables, assigning the address of a variable to a pointer, dereferencing a pointer to access the value of the variable being pointed to, and how the value changes when dereferencing the pointer after assigning a new value through the pointer. It also lists some references for learning more about pointers in C.
The document discusses C programming concepts like functions, arrays, and static variables. It includes code snippets showing how to define functions that take parameters and return values, as well as how to iterate through arrays using a for loop and the sizeof operator to determine the array size. The document seems to be notes for learning C programming basics like defining functions, using arrays, and understanding static variables.