debug error output disappears in seconds

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kalaivani s
    New Member
    • Mar 2013
    • 1

    debug error output disappears in seconds

    Code:
    #include<stdio.h>
    #define ISIZE 10
    void size()
    {
    	char string10[ISIZE];
    	int i;
    	for(i=0;i<ISIZE;i++)
    		string10[i]=getchar();
    	for(i=ISIZE-1;i>=0;i--)
    		putchar(string10[i]);
    }

    output is disappears in a seconds.
    Am getting the output like this
    The program '[1616] examples.exe: Native' has exited with code 0 (0x0).

    I need immediate solution for this problem
    Last edited by acoder; Mar 7 '13, 12:00 PM. Reason: Please use [code] tags when posting code
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    Are you using Visual Studio?

    Comment

    Working...