Re-namespacing a bit to clear out some fairly old stuff from the top level
This commit is contained in:
15
oldstuff/PracticingC/gowrikumar/src/10-nestedprintf.c
Normal file
15
oldstuff/PracticingC/gowrikumar/src/10-nestedprintf.c
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* :author: Dan Buch (daniel.buch@gmail.com)
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
int i = 43;
|
||||
printf("%d\n", printf("%d", printf("%d", i)));
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* vim:filetype=c:fileencoding=utf-8
|
||||
*/
|
Reference in New Issue
Block a user