online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int main() { int days, years, weeks; days = 1329; // Converts days to years, weeks and days years = days/365; weeks = (days % 365)/7; days = days- ((years*365) + (weeks*7)); printf("Years: %d\n", years); printf("Weeks: %d\n", weeks); printf("Days: %d \n", days); return 0; }

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