Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /s/bach/a/class/cs000/public_html/pmwiki/cookbook/date.php on line 68

Warning: String offset cast occurred in /s/bach/a/class/cs000/public_html/pmwiki/cookbook/steganography.php on line 9

Deprecated: Implicit conversion from float 1260.2884615384614 to int loses precision in /s/bach/a/class/cs000/public_html/pmwiki/cookbook/steganography.php on line 9
Jack Applin | Code / PrintfMismatch

Code











edit SideBar

(:run:)

        #include <stdio.h>

        int main() {
        	printf("%d\n");
        	printf("%d\n", "789");
        	printf("%d\n", 123.0);
        	printf("%f\n", 456);

        	return 0;
        }