🚀 Quick Start
Test the AI-powered chat interface for C code analysis and programming assistance.
📝 Sample C Code
Use this sample code to test the chat context features:
#include <stdio.h>
#include <stdlib.h>
int factorial(int n) {
if (n <= 1) {
return 1;
}
return n * factorial(n - 1);
}
int fibonacci(int n) {
if (n <= 1) return n;
return fibonacci(n - 1) + fibonacci(n - 2);
}
int main() {
int num = 5;
printf("Factorial of %d: %d\n", num, factorial(num));
printf("Fibonacci of %d: %d\n", num, fibonacci(num));
return 0;
}