[ create a new paste ] login | about

Link: http://codepad.org/ys7XH48F    [ raw code | output | fork | 1 comment ]

C, pasted on Dec 25:
#include <stdio.h>
#include <stdlib.h>

void(int n)
{
 	
 	if (n==100){
      while(n>0){
        printf("%d ",  imprime(n)-imprime(n-1););
		}
    }

}
int main()
{
    int num=100;
    
  imprime(num);
   getch();
   return 0;
  
}


Output:
1
Line 4: error: expected identifier or '(' before 'int'


Create a new paste based on this one


Comments:
posted by GT. on Dec 25
reply