online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int findMax(int number[], int size); int findMax(int number[], int size) { int max = number[0]; for (int i=1; i<size; i++) { if (number[i] > max) { max = number[i]; } } return max; } int main() { int number[10] = {10, 2, 23, 74, 15, 67, 38, 29, 40, 51}; int max_value = findMax(number, 10); printf("ë°°ė—īė˜ ėĩœëŒ€ę°’ė€ %dėž…ë‹ˆë‹Ī.\n", max_value); 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