Tagged Questions
0
votes
1answer
22 views
Code is not updating in Windows
I am running a C program using DEVC++ and CodeBlocks in Windows and the code is not updating.
I just added a single printf message and it is not shown in the output.
I tried clean,rebuild,recompile, ...
1
vote
0answers
12 views
Running Redmon with a Service
I am trying to use Redmon 1.7 on my windows XP SP2 desktop machine. I process the data provided by Redmon to MyProgram.exe and then write it out to stdout which Redmon sends to printer port.
But ...
3
votes
1answer
34 views
Why does wcwidth return -1 with a sign that I can print on the terminal?
Why does here wcwidth return "-1" (not a printable wide character) width "Ԥ" (0x0524)?
#include <stdio.h>
#include <wchar.h>
#include <locale.h>
int wcwidth(wchar_t wc);
int ...
3
votes
1answer
47 views
Trying to get this display function to work
So I'm trying to get this code to draw a card, and then each time printcards in called it prints the previous card and the new card. Right now it it prints off one card and then another while I want ...
0
votes
1answer
32 views
Reading in and recording a number in C
This is a homework problem. I have a C program that takes user input for a number of people's first names, last names, and ages. Right now it works and prints out the names to the console correctly, ...
0
votes
2answers
41 views
FindNextPrinterChangeNotification returns NULL for ppPrinterNotifyInfo
I'm stuck on problem were I would like to ask for some help:
I have the task to print some files of different types using ShellExecuteEx with the "print" verb and need to guarantee print order of all ...
0
votes
0answers
59 views
Printing a circular buffer
I'm wondering how do I print out this giant circular buffer. The first 3 blocks are structs and the while loop is in a main, this is only part of my code. I'm not focusing the format or the output ...
1
vote
1answer
48 views
Trying to compare two C strings [duplicate]
Edit: This is a duplicate and I've flagged it as so. See [question] Why is "a" != "a" in C?
So I'm trying to print out a specific message depending on a field within a struct. The ...
0
votes
2answers
106 views
How to print integers in typing order in C - increasing, decreasing or evenly
I have a problem with a c program I'm trying to write. The program must store integers in array (read from the keyboard). The numbers must be printed out in the order of entering, for example if you ...
0
votes
0answers
19 views
getting “-1.#IND00” on printing double type values in c [duplicate]
on printing floating number types values in 'c' i am getting a value "-1.#IND00" . Can someone explain the meaning of this "-1.#IND00". output snippet is
...
0
votes
0answers
58 views
php_printer.dll cannot print Chinese character
I am using the php_printer.dll to print chinese character but it won't works in PHP code, only symbols is printed, so I try to dig and tweak the PHP C source code, below is the source code that can ...
0
votes
2answers
36 views
Input and output array don't match
I am writing a program for a class at school and I cannot get the program to print out what I type in.
The problem states that the first line needs to contain the number of questions on an 'exam' ...
1
vote
1answer
62 views
Printing one extra empty line at the beggining of output in C
Why is this printing one empty line at the beggining of the output? \n is only after %s... Help please, I'm so frustrated.
if(argc > 1){
while(r!=NULL){
r = fgets(str, MAXL, stdin);
...
0
votes
1answer
87 views
C code printing hex values but very different [closed]
int main() {
int i;
int four_ints[4];
char* c;
for(i=0; i<4; i++) four_ints[i] = 18;
c = (char*)four_ints;
for(i=0; i<4; i++) c[i] = 24;
...
-1
votes
1answer
82 views
Print next and prev value of doubly-linked list in C
I'm creating a doubly linked list in c. I want to print out my prev & next value to check if my doubly-linked list is correct.
#include <stdio.h>
#include "dubblelist.h"
#include ...
0
votes
1answer
45 views
Bad characters printed in a queue in C
I'm trying to print a queue with a char array in its struct.
I just read a text file with some web address, push into the queue and try to print. The first 4 lines are ok but then it begin to print ...
0
votes
1answer
56 views
I'm getting a really odd timing error, where something is executing before I believe it should
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
int c, n, E, b, s, v, t, opt, valid = 0;
char ...
-1
votes
4answers
90 views
i cannot find any error in my program but it is not giving desired output [duplicate]
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
int a[]={1,2,3,4,5};
int b[]={0,0,0,0,0};
int *p;
int i;
p=b;
for( i =0 ; i<5 ; i++)
{
b[i]=a[i]+1;
*p=b[i]-1;
...
0
votes
1answer
80 views
Different print behaviour between linux and macOS [closed]
I'm trying to print out a table containing some elements in the console. I've got a macbook pro, partitioned with linux mint. In linux this works perfectly, everything prints correctly.
In macOs ...
-6
votes
2answers
83 views
Printing in style in C [closed]
How to get the following output in C:
1 2 3 2 1
4 5 6 5 4
7 8 9 8 7
10 11 12 11 10
13 14 15 14 13
0
votes
2answers
89 views
Struct variables printing
I am writing a genetic algortihm and i have a problem in printing some struct variables. I know that the code reads them properly because i get a result but when i try to print them on screen or in a ...
0
votes
2answers
92 views
Loading a text file into a struct using C
I try to load the contents of a text file into a structure.
My idea looks like this:
I have two files, struct.h , main.c and a list.txt file .
in file struct.h :
struct analg {
char word[6];
...
0
votes
2answers
58 views
Incorrectly printing output in C; glitch and repeats
My code works, but it's not printing right. This is my input:
Please enter in 1 for characters, 2 for ints, 3 for floats and 4 for words
1 abcdefghijklmnop 3 123.4 45.54 6.0 7890.09876 2 123 34 23 ...
0
votes
4answers
63 views
Print out all users of a machine in C
I've been searching for hours and can not seem to figure this out. I know how to print put the current user on a machine in C but how do I print out all of the users that exist on the machine using C. ...
0
votes
0answers
45 views
Printing string vector and saving/ loading vector saved files
Hello fellow coders who have more experience then me :)
I was wondering if i could get help with this program im making its purpose it to keep a schedule it adds, deletes, save to file, loads from ...
-2
votes
4answers
182 views
printf() with %c format code not printing what I expect
#include <stdio.h>
int main ( ) {
int n;
n = 0;
printf ("%c\n", n);
return 0;
}
so that's my code, but when i print it, it just prints a blank space. Shouldn't it print 0?
0
votes
2answers
85 views
C char appears as int when compiling
im learning C, and have been trying to make a program that takes user input, and removes any double spaces in it, then prints it out again. We have not done arrays yet so I need to do this char by ...
0
votes
1answer
216 views
How to print a 2d array with a function in C?
I'm trying to print a 2d array with a function ,but I keep getting the error "pointer expected" (I'm using Pelles C, if that makes any difference..). I'm trying to make a battleship-type grid. I'm ...
1
vote
6answers
128 views
1
vote
1answer
248 views
Linux/CUPS printing example/tutorial?
I need to print some vector data (or to be more exact: some dots and polylines) using Linux. When I ask Google for that it shows me many tutorials and documentations - but all for end users, no ...
-2
votes
1answer
193 views
How to display a matrix in C
I have a matrix.txt file wherein there is a matrix written this way :
1 2 3
4 5 6
7 8 9
I need to write a little C program that take this file as input and print this matrix in the same way as ...
5
votes
1answer
125 views
Automatically printing the structures and variables in C
I am working with 4-5 .c files (around 2000 to 5000 lines each) which include several
headers.Currently I do not have any debug prints which would help me debug the program
during its course of ...
-1
votes
3answers
201 views
How to print the contents of a two-dimensional array of characters? [closed]
I'm trying to print an array of characters in C but i can't print everything.
I want to print :
b1
b2
My code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main() ...
0
votes
4answers
62 views
Printing a int variable in C [closed]
This is probably a really noobish question or a repeat, but i can't work out for the life of me how to do this.
int main(){
int i;
int sum;
for(i=0; i<=1000; i++){
if(i%5==0||i%3==0){
sum=sum+i;
...
1
vote
0answers
140 views
How to override the print button in MS Word to call some other printing application [closed]
Is it possible in MS Word ,to print a file we click Print, the print dialog appears, we do all the necessary settings and then click Ok and instead of calling the printer diver the Ok button calls up ...
0
votes
2answers
88 views
C fscanf and pointer
After trying to read/write binaries failed miserably I tried to do the same thing with fscanf and fprintf and it seemed to work fine, but again .. reading doesn't work at all and once again I can't ...
3
votes
1answer
120 views
How to only print 5 node of a tree using a recursive function
So Basically I want to only print the first 5 node of a AVL tree using recursion
void printInOrder(void* theTree, void(*printnode)(void *data)) {
struct AVLTreeNode *node= (struct ...
1
vote
3answers
170 views
Printing the string value in Reverse [closed]
I'm getting a blank output in my console screen when I try to print the string value in a reverse order. If I use for loop for printing the String value is printing, but when I simply print using %s, ...
0
votes
2answers
147 views
How to print c_ubyte_Array object in Python
What is the best way to print the contents of a C unsigned char array in Python,
if I use print theStruct.TheProperty
I get...
<structs.c_ubyte_Array_8 object at 0x80fdb6c>
The definition ...
0
votes
0answers
35 views
C Minishell Command Expansion Printing Gibberish [duplicate]
Possible Duplicate:
C Minishell Command Expansion Printing Gibberish
I'm writing a unix minishell in C, and am at the point where I'm adding command expansion. What I mean by this is that I ...
1
vote
1answer
161 views
Returning and printing string array index in C
I've got a function that searches through a list of names and I'm trying to get the search function to return the index of the array back to the main function and print out the starting location of ...
0
votes
0answers
66 views
C printing thread style
I am currently trying to write a program that uses linked lists to store message. I want to be able to print the messages out in thread style. If someone replies to message 1 then that message is ...
0
votes
3answers
95 views
Why this function causes non-stop printing?
Hello a friend of mine shown me this piece of code to make a point about array/stack bound checking.
#include <stdio.h>
void foo() {
unsigned long long a[1];
a[3] -= 5;
...
0
votes
3answers
459 views
How to count the number of words that contain at least 3 vowels
I was wondering if I could ask for some help. I am writing a program in C that writes out the number of characters, words, and vowels are in the string(with a few added print statements). I am trying ...
0
votes
1answer
66 views
how to print only changed characters to the console using C
Currently I have some C code which will every time an arrow key is pressed it will reprint an array of characters to the screen and change only the player's position one spot. I would like to know how ...
1
vote
1answer
156 views
Printing this floating point format
Observe the above image, the remaining loan amount being displayed in a pretty unique way. It is basically a floating point value. When it is having no floating precision it is displayed as $3000 ...
1
vote
2answers
127 views
When i try to print out some unicode chars as hex in C, they all have the same value for some reason
So for some reason, all these UNICODE characters appear to have the same value when i print them out in C Does anyone have any idea why?
char input[8] = {'⺖', '⺓', '⺄', '⺑', '⻣', '⺽', '', '⺽'};
for( ...
1
vote
1answer
153 views
How do I add a System V filter using the cups API?
I need to programmatically add a printer to cups that has a System V filter installed. Right now I am using the following code to create the request to add the printer:
pstRequest = ippNew();
...
1
vote
2answers
58 views
PJLMon won't build (LNK 2019)
EDIT : I seem to have solved the problem, even if I don't know the particulars of why it worked. See the answer below this post.
I'm trying to compile the sample language monitor PJLMon, but a linker ...
2
votes
5answers
154 views
Can somebody please explain this recursive function for me?
#include <stdio.h>
#include <stdlib.h>
void reprint(char *a[]) {
if(*a) {
printf("%d ",a);
reprint(a+1);
printf("%s ",*a);
}
}
int main() {
...
