How to install C(Devcpp) and python IDLE(python IDLE and pycharm) EP 1

Опубликовано: 19 Июнь 2026
на канале: Mah0raga C0der
111
6

Devcpp - https://sourceforge.net/projects/orwe...
pycharm - https://www.jetbrains.com/pycharm/dow...
python - https://www.python.org/downloads/

0:00 Devcpp
5:56 pycharm community edition


C Code 1 (yt doest allow me to type greater then and lesser than symbol )
Source Code:
#include stdio.h
main(){
printf("hello world!!!!!!!!!!\n");
}

C Code 2
Source Code:
#include stdio.h
void p(){
printf("hi");
}

main(){
printf("hello world!!!!!!!!!!\n");
p();
}

for python make sure spacing is correct no etc or less spaces
python Code 1:
print("hello world")

python code 2:
for i in range(10):
print(f"{i})Hello")