{"in":{"data":"/* Fibonacci Series c language */\n#include\u003cstdio.h\u003e\n \nmain()\n{\n   int n, first = 0, second = 1, next, c;\n \n   printf(\"Enter the number of terms\\n\");\n   scanf(\"%d\",\u0026n);\n \n   printf(\"First %d terms of Fibonacci series are :-\\n\",n);\n \n   for ( c = 0 ; c \u003c n ; c++ )\n   {\n      if ( c \u003c= 1 )\n         next = c;\n      else\n      {\n         next = first + second;\n         first = second;\n         second = next;\n      }\n      printf(\"%d\\n\",next);\n   }\n \n   return 0;\n}\n","type":"txt"},"out":{"data":"/* Fibonacci Series c language */\n#include\u003cstdio.h\u003e\n\nmain()\n{\n    int n, first = 0, second = 1, next, c;\n\n    printf(\"Enter the number of terms\\n\");\n    scanf(\"%d\",\u0026n);\n\n    printf(\"First %d terms of Fibonacci series are :-\\n\",n);\n\n    for ( c = 0 ; c \u003c n ; c++ )\n    {\n        if ( c \u003c= 1 )\n            next = c;\n        else\n        {\n            next = first + second;\n            first = second;\n            second = next;\n        }\n        printf(\"%d\\n\",next);\n    }\n\n    return 0;\n}\n","type":"txt"},"client":"0.5.0"}