Posts by Jordan Gonçalves • 340 points
4 posts
-
1
votes2
answers1634
viewsA: Why are you making a mistake when trying to compile the program with this library (IUP)?
For this library to work you must put the library in the compiler folder and add the settings you indicate in Linker/Compiler... Look at that step by step:…
canswered Jordan Gonçalves 340 -
11
votes2
answers3445
viewsQ: How to create a program in C and use Java/C#GUI?
I’m studying graphic interface in C, and I realized it’s very complex and tiring. So I wanted to know if there is how I create a program in C and use graphical interface of Java or C#. With use of…
-
1
votes2
answers72
viewsA: Code compilation
System pause is a DOS command of the c.E language used to use DOS commands. The "pause" command is for pausing the program and not letting it close quickly. And you can’t forget to add include…
-
1
votes3
answers366
viewsA: Variable in main is global?
Main is the main function of the program. And variables declared outside any function(scope) are global. The ones inside the functions are local. Global can be used in the entire program and local…