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

Search found 4 matches

by Mussel
Wed Mar 29, 2023 9:59 am
Forum: C/C++
Topic: An obfuscated C coding contest
Replies: 16
Views: 106521

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: 16
Views: 106521

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: 4086

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: 4086

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" ...