Calico
Monday, June 26, 2017
stackoverflow
#include<limits.h>
#include<stdio.h>
void overflow(int n)
{
if(n == INT_MAX){
return;
}
printf("%d",n);
n= overflow(n+1);
}
int main()
{
overflow(1);
return 0;
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
imgops
void normalize( uint8_t array[], unsigned int cols, unsigned int rows ) { uint8_t darkest = min(array, cols, rows); u...
list_sort
#include<stdio.h> #include<stdlib.h> #include"list.h" void list_sort(list_t* list) { }
No comments:
Post a Comment