Information Technology - Computer Programming - Source Code - Homebrew - Open Source - Software - Hardware - 8 bit - 16 bit - 32 bit - 64 bit - x86 - x64 - DOS - Windows - Linux - Arduino - Embedded - Development - Retro - Vintage - Math - Science - History - Hobby - Beginners - Professionals - Experiment - Research - Study - Fun - Games

ATTENTION NEW USERS: Due to bot traffic, we are forced to manually approve registrations. We get thousands of bots trying to register, causing us to delete registrations in bulk with little ability to filter what is real or not. If you're having trouble getting approved, then send an email to ptrworkmails@gmail.com explaining that you are a real user. Use the same email you're trying to register with. Thank you.

Search found 5 matches

by Mussel
Mon Mar 03, 2025 1:19 am
Forum: C/C++
Topic: An obfuscated C coding contest
Replies: 18
Views: 250989

Re: An obfuscated C coding contest

IOCCC is starting soon on March 5, 2025.

But I am not participating as my C code has been published here and elsewhere.
by Mussel
Wed Mar 29, 2023 9:59 am
Forum: C/C++
Topic: An obfuscated C coding contest
Replies: 18
Views: 250989

Re: An obfuscated C coding contest

One entry I remember seeing long ago is available here: http://www.nicholson.com/rhn/files/dds_basic.c "Worlds smallest Basic interpreter. C source. Obfuscated ( 1990 IOCCC winner). Only 25 lines long! Written by: Diomidis Spinellis (scripting Basic, C source, GPL'd)" I found it at this s...
by Mussel
Tue Mar 28, 2023 2:33 pm
Forum: C/C++
Topic: An obfuscated C coding contest
Replies: 18
Views: 250989

An obfuscated C coding contest

Recently someone introduced to me The International Obfuscated C Code Contest ( https://www.ioccc.org/ ), it was started since 1984, and the most recent one is 2020. There is supposed to be a new contest in 2023 but not yet open. The goal is to write the obfuscated C code, but the program can be any...
by Mussel
Wed Mar 08, 2023 7:12 pm
Forum: Craft Basic Support
Topic: How to print string variable?
Replies: 3
Views: 46292

Re: How to print string variable?

Oh, I see, once you have implemented the string variable, I guess I want build a program with recursion to print all combination of letters in certain length For example I mean with 'A,B,C" all the possible combination in 5 characters. A,A,A,A,A A,A,A,A,B A,A,A,A,C A,A,A,B,B A,A,A,B,C A,A,A,C,C...
by Mussel
Mon Mar 06, 2023 4:01 pm
Forum: Craft Basic Support
Topic: How to print string variable?
Replies: 3
Views: 46292

How to print string variable?

I decided to give Craft Basic a try, this is my first app written in Craft Basic, but I don't know how to print string variable: input "Please enter you name", s print "Welcome ", s print s It prints "0" instead of the input I typed. EDIT: I removed the "dim" ...