hi how to convert program from notepad to turboc editor can
u please help me
Answers were Sorted based on User's Feedback
1) just save ur notepad program with extension .c or .cpp
2) cut that notepad file from the location and paste it in ur folder where all ur turboC files are stored...
3) open ur Turbo C editor... and open the file which u have pasted... it will be available for u..
thank u
| Is This Answer Correct ? | 71 Yes | 33 No |
Answer / kiran
Type the C Program and save it in the location where your C Programs are stored. Open TC compiler and select the file, compile and run.
| Is This Answer Correct ? | 2 Yes | 7 No |
Answer / musthafa
copy the lines from the notepad and paste in the c program editor.
| Is This Answer Correct ? | 8 Yes | 59 No |
what is the difference between c and c++?
How to print India by nested loop? I IN IND INDI INDIA
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
Can two or more operators such as and be combined in a single line of program code?
What are extern variables in c?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
What do you mean by dynamic memory allocation in c?
Is null always defined as 0(zero)?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What are header files and explain what are its uses in c programming?
What are valid operations on pointers?