var fDesc=new Array(); fDesc[0] = "The Miracle C Compiler runs under Microsoft Windows and compiles the C language. It generates object code suitable for Microsoft or compatible linker (such a linker is built into the Workbench, and automatically invoked during program build).

Miracle C Workbench provides an interactive program development environment running under Windows XP/Vista, with multi-file editor, syntax coloring, IDE access to compiler/linker features, and online help for Workbench and language/library.

It is completely compatible with C syntax and implements record (struct/union) and enumerated data types, int, long and floating point types, user type definition, bit fields in structs, and initializers for all types. There is a comprehensive library of functions; some example programs and documentation in Windows Helpfiles is supplied with the package."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }