-
Began Watching multiple c files
#include <stdio.h> static int Var1; static FUNC() { //do stuff with var } void CALL_FUNC() { //call FUNC //do stuff } void fc1(void) { CALL_FUNC(); } void fc2(void) { CALL_FUNC(); … -
Replied To a Post in multiple c files
First off, you should never declare `main()` as `void` in C or C++; in C, `int main()` is the only portable form of the function, and in C++ (and the … -
Created Request for Critique on new language proposal
I am currently working on a new language design in the Lisp family, which I am calling 'Thelema'. It is intended to be a multi-paradigm language which is related loosely … -
Began Watching Request for Critique on new language proposal
I am currently working on a new language design in the Lisp family, which I am calling 'Thelema'. It is intended to be a multi-paradigm language which is related loosely … -
Began Watching how does while loop works?
how can i produce my buttons using while loop and a list if stirng # python 2.x #from Tkinter import * #from tkFont import Font # python 3.x from tkinter … -
Replied To a Post in how does while loop works?
Could you please explain your goal in this a little? We need more context to be able to give a meaningful answer.