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)
Lab 3: Tasks 1-3
/* * imageops.c - Simple operations on images * * C laboratory exercises. * Richard Vaughan, 2014. */ #include <assert.h> #includ...
lel
int LLcycle(list_t* list) { element_t* el1 = list->head; element_t* el2 = list->head->next; while(1){ // NULL is det...
No comments:
Post a Comment