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 |
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
How will you allocate memory to a double pointer ?
Is fortran faster than c?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
write a program to create a sparse matrix using dynamic memory allocation.
how do you execute a c program in unix.
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
how to print "hai" in c?
What are the different file extensions involved when programming in C?
What is the argument of a function in c?
Do you know the use of fflush() function?