compling c executing c program without editor is similar to that of Java program. we just have to set the path to TC to the PATH environment variable. then using the TCC command we can execute the C program..... EG: TCC sam.c //Compilation sam //Execution
sdfdg
This is not a question.
To write a program in Watfor77, you start by using a text editor to create a source code file with a .f extension. The program follows Fortran 77 syntax, which includes defining variables, writing subroutines, and using control structures like loops and conditionals. Once your code is written, you compile it using the Watfor77 compiler, which translates the Fortran code into an executable format. Finally, you run the compiled program to see the output.
i want to write a simple without using pointer or array c program which will print greatest number when i give 20 number .........How far have you gotten so far?
write a vb program to find the magic square
Use a text-editor like notepad, editpad, etc.
Yes you can write a C program without using turbo C IDE. All you need is a text editor like notepad where you can write your codes and after writting them save the file with .c extension. But for compilling and running the code you will be needing turbo C IDE.
Use a text-editor program.
Use text-editor notepad++
Use a text-editor.
sdfdg
That would depend on the program you are using. There are certain superscripts that are part of the basic Unicode character set. if your superscript is not one of them then you will have to ask about the exact program you are using to write with. Here in the Answers.com editor there are buttons for superscripts NormalSuper and subscripts NormalSub. Each application has its own way (if it is at all possible)
Technically yes, practically no.
This is not a question.
not possible dude
GLBasic can be used to write games and utilities for Windows, Mac, Linux, iPhone and many other platforms You do this by using the integrated editor and then compile the program.
To swap two variables without using a third variable, use exclusive or manipulation... a ^= b; b ^= a; a ^= b;