Hey guys,
Is it possible to print characters of different colors to the command line in Linux? I would like to print a word, for example, with one letter a different color. Is this possible? From what I've been able to gather on Google, it is possible to change to font color of all...
I am trying to mimic the function below in MIPS:
extern void print_int(int x);
extern void print_string(char x[]);
char y[1];
void main(void) {
char y[1];
y[0] = 'a';
y[1] = '\0';
print_string(y);
}
and my MIPS code for the above C code is below
can someone tell me...
I need to be able to print the output from my c++ program, which obviously comes up in a dos screen. Is there an easy way to print this without writing it into the code? Any help would be greatly appreciated.
Our work PCs have a very annoying pop up that displays every time a page is printed/plotted. It is an annoying balloon that pops up with the print manager icon in the system tray letting me know that I sent something to the printer (as if I didn't know I just hit the print button). I asked our...
Is it worth printing the book by Strang? I already have Stewart, but it's always nice to have more than one text if possible. How would you compare Strang with Stewart?
C++ program--help printing columns and rows
Homework Statement
Print the approx of e^x from 1 to 100. It might not fit on screen so for example print out in 10 columns and 10 rows.Homework Equations
int row =1;
while (row < 20)
{
int column = 1...
OK I have a need to print a textbook out, mainly because I cannot locate it for cheap anywhere. It is 690 pages and would just need to be spiral bound or something. It doesn't have to be fancy paper or anything crazy, just black and white, double sided, the normal stuff.
I was thinking maybe...
Hello --
Anyone have experience with Dell printers? My mom has an All-In-One that is printing jagged --- documents, pics, etc get lines through them and one page carries over to a second page.
I tried driver re-install, changing ink, etc, etc. Any other ideas, or is this thing toast...
Hey guys,
I was wondering if any of you can help me with my problem. I have this really small DOS program (~40 kb) that I am running and it is based on Kramers' formula.
Now the thing is when you generate a graph in this program there is a message in the bottom right-hand corner that says...
Hello,
I just posted another topic on a brightess problem when viewing videos and I thought that while I was at it, I might as well ask someone for some advice about another problem I'm having. A few months ago I had an old printer, (which really wasn't very old, but I print so little with...
Hi Everybody,
I Am A New Member In This Forum. And I Would Like To Know More Information About:
1. How To Producing Lithography`s Plate.
Because I Am Studing Now Positive And Negative Plate, And How To Make Them.also, The Lithography Platemaking System.
So Anybody Have Any Details...
I'd like to print out a string but get stuck at a compile error.
push offset string "abcdefghijklmnop qrstuvwsyz oh well you see, I am learning abc";
call printf;
compiler says error "at string", how i can deal with this little problem ?
Thanks
I am working on a little piece of a program that prints two diagonal lines. I am using a variable "num" to specify how far down to draw each diagonal.
What I would like to do is be able to start at a position on the screen
and have the printing begin at that position, and also track the...
I've written a program in Fortran which has a do loop of the form
do i=0,20000
(operations)
end do
I want the program to print the values of the do loop, but only want it to print every 100th value of i (i.e. 100,200,300,400...20000), can anyone suggest a way to do this?
Hello, I have a little function I have written that takes an array of structures as an argument
void print_names(struct pers_info arr[])
{
printf("Here is person 1: %d %s %s %s\n", arr[0].ssn,
arr[0].pers_name.first,arr[0].pers_name.middle, arr[0].pers_name.last);
printf("Here...
Is there a way that I can print a file on a computer that doesn't have software to read the file?
I have a very specialized font installed for MS word on my computer, but no printer. I have access to a computer lab with excellent printing resources, but these computers will not have the...
Perhaps someone can help me out here.
For one of my classes, the professor has made available the lecture notes in .pdf format. I would like to print them out prior to class so I can actually spend time absorbing information instead of frantically scribbling. However, I don't want to print...