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 |
How to declare a variable?
Explain the term printf() and scanf() used in c language?
who is the founder of c
19 Answers College School Exams Tests, HP,
What is a pointer variable in c language?
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147
why we are using semicolon at the end of printh statment
Is there any book to know about Basics of C Language?
Is linux written in c?
How would you rename a function in C?
What is meant by int main ()?
What is keyword in c?
What is modeling?