Getting started:
Related tutorials:
# Start a container that mimic the lambda environment | |
docker run -it --rm --entrypoint bash -e ODBCINI=/var/task -e ODBCSYSINI=/var/task -v "$PWD":/var/task lambci/lambda:build-python2.7 | |
# Then, download ODBC source code, compile and take the output | |
curl ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.5.tar.gz -O | |
tar xvzf unixODBC-2.3.5.tar.gz | |
cd unixODBC-2.3.5 | |
./configure --sysconfdir=/var/task --disable-gui --disable-drivers --enable-iconv --with-iconv-char-enc=UTF8 --with-iconv-ucode-enc=UTF16LE --prefix=/home | |
make install | |
cd .. |
Getting started:
Related tutorials:
package cse.unl; | |
import java.time.LocalDate; | |
public class Demo { | |
public static void main(String args[]) { | |
LocalDate dateOfBirth = LocalDate.of(1990, 7, 9); | |
Student s1 = new Student(35140602, "Chris", "Bourke", 4.0, dateOfBirth); |
ctype.h
library that provides several "check" functions for single characters: isalpha(c), isdigit(c), islower(c), isupper(c), isspace(c)
, conversion: toupper(c)
, tolower(c)
, etc.An introduction to loop control structures.
main(), printf(), sqrt()
, etc.if
-statements, if-else
statements, if-else-if
statements