Post Reply 
How Do I Print to Printer With Casio VX-4 C?
08-05-2022, 03:21 AM
Post: #2
RE: How Do I Print to Printer With Casio VX-4 C?
I don't have a VX-4 but from a C point of view, %d prints and integer not a float so looks a bit suspicious, you'll maybe get junk, or maybe Casio have a different %d.
Also, stdprn should be defined in stdio.h so you have created a local variable that hides the real stdprn when you define stdprn in that code. try taking out the

FILE *stprn;

line and add in

#include <stdio.h>

if it's not already there.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: How Do I Print to Printer With Casio VX-4 C? - blackjetrock - 08-05-2022 03:21 AM



User(s) browsing this thread: 1 Guest(s)