Post

Cyber wolf
Cyber wolf@Cyber_wolf10·
@PythonPr In this c program: syntax error: at 8:1, );n++; ^ ~ What is this Added closing paranthesis doing here??? And what is this <conio.h> library???
English
0
0
2
20
Cyber wolf
Cyber wolf@Cyber_wolf10·
@PythonPr c: #include <stdio.h> int main(void){ int n; do{ printf("Enter a sctrictly positive integer: "); scanf("%d", &n); }while(n <= 0); for(int i = 0; i < n; i++) printf("sorry (for what..???)\n"); return 0; }
English
0
0
1
22
Clayton Sterling
Clayton Sterling@Claytoncyre·
@PythonPr Python is objectively better in this example, but I DO like n++ 🤣
English
0
0
0
55
Cyber wolf
Cyber wolf@Cyber_wolf10·
@PythonPr python: while True: n = input("Enter a strictly positive integer: ") if n > 0: break print("sorry (for what...???)"*n)
English
1
0
0
21
Dairy Queen
Dairy Queen@DairyQueen·
How do you make National Ice Cream Day even cooler? Make it a full week, that's how.
English
55
37
976
4.3M
Victoria
Victoria@_navicstein·
@PythonPr Python is faster to write but C is faster to run. Python wins for prototyping and data work, C wins for performance critical systems. The best programmers know when to use each
English
0
0
2
51
Paylaş