Example 2 - GDB Online Debugger Code, Compile, Run, Debug Online C, C++
Example 2 - GDB Online Debugger Code, Compile, Run, Debug Online C, C++
OnlineGDB beta
main.c
online compiler and debugger for c/c++
1 /******************************************************************************
2
Welcome, กมลพร เ'อด*นทด
3 Welcome to GDB Online.
Example 2 4 GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ru
5 C#, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLit
Create New Project 6 Code, Compile, Run and Debug online from anywhere in world.
My Projects 7
8 *******************************************************************************/
Classroom new 9 #include <stdio.h>
Learn Programming 10
11 int main()
Programming Questions 12 {
Logout 13 int num;
14 printf ("enter number:");
15 scanf ("%d",&num);
16 printf ("output = %d",num);
17 }
18
19
input
enter number:32
output = 32