answersLogoWhite

0


Best Answer

You can use the trim key to cut the lines.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: If a mistake is made how does the user make a correction without using the undo function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you define power function without using operator?

using pow() function.. ..


How do you calculate sine value without using math function?

Using its Taylor-series.


What is a sentence using mistake?

That was not a mistake!


Sorting an array in PHP without using sort function?

plz as soon as possible give me the program for shorting an array in asscending order without using any sort function in c++


How do you compare 2 numbers without using relational operators in c?

using max function


How do you implement awgn in MATLAB without using awgn function?

no way... use awgn function in matlab


Reverse of a string without using string handling function?

shashi


How do you reverse a string in PHP without using a function?

Without any function is impossible. So I'll assume you mean any coded function, in which case the predefined function below is your answer.$string = strrev($string);


Some situations where you might use cut without using the paste function?

Both cut and copy are used in conjuction with paste. Think of some situations where you might use cut without using the paste function


How do you draw line without using any predefined function?

That won't happen, you have to have a predefined putpixel (or something like that) function.


How do you sinx without using mathh or built in sin function Any Algorithm to implement sin function?

You can compute sin(x) manually/numerically using Taylor's Series.


A c program to call a function without using function name?

It can be done via its address, for example: void function (void (*callback)(void)) { (*callback)(); }