online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int main () { FILE * fptr; int i,n; char str[100]; char fname[20]="test.txt"; char str1; printf("\n\n Write multiple lines in a text file and read the file :\n"); printf("------------------------------------------------------------\n"); printf(" Input the number of lines to be written : "); scanf("%d", &n); printf("\n :: The lines are ::\n"); fptr = fopen (fname,"w"); for(i = 0; i < n+1;i++) { fgets(str, sizeof str, stdin); fputs(str, fptr); } fclose (fptr); /*-------------- read the file -------------------------------------*/ fptr = fopen (fname, "r"); printf("\n The content of the file %s is :\n",fname); str1 = fgetc(fptr); while (str1 != EOF) { printf ("%c", str1); str1 = fgetc(fptr); } printf("\n\n"); fclose (fptr); return 0; }
test line 1

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue