printf is a C function that prints formatted strings. Other languages have also added a printf function.
4
votes
6answers
127 views
Printing int as float in C
I'm using Visual Studio TC compiler for Little Endian.
The following is the piece of code:
void main()
{
float c = 1.0;
int a = 0x3F800000;
int *ptr = (int *)&c;
...
0
votes
1answer
33 views
Format multiline command output in bash using printf
My Bash script uses printf to print output of some other commands with formatting applied, in the following manner (note the two leading spaces):
printf " %-16s %s\n" "foo:" "$(bar)"
The two ...
0
votes
1answer
21 views
printf - separate digit and sign
I need to seperate digit from sign. So, if I have digit 2635, I need it to be like this:
"+ 2635."
Here is my code:
printf("%+-#13.4g\n", digit);
and what I'm getting is
"+2635. "
...
4
votes
1answer
37 views
compilation order and post prefix opertors
I was wondering why the following outputs 7 7 6 7 instead of 5 6 6 7
my $a = 5;
printf("%d %d %d %d",$a,++$a , $a++ , $a);
I'm pretty sure it has something to do with the order of parameters ...
0
votes
1answer
27 views
gnu assembler printf error
My os is ubuntu 13.04 64 bit
I wasted many hours to fix it
really need your help
this test.s returns
Accessing a corrupted shared library
.code32
.section .data
par1:
.int 33
msg:
.asciz ...
-4
votes
1answer
32 views
Linux Terminal Input/Output C program
I am having some doubts about Linux Terminal output's
in a c program i made a
printf("Write A Message");
fgets(buffer,BUFSIZ,stdin);
which waits for a Message to be typed from keyboard
I have ...
0
votes
3answers
20 views
PHP - Adding predefined text as well as session variable using fwrite
In the following code, i want to be able to include 'Name:', 'Age:' and 'Email:' before the PHP script writes the variables $name, $age and $email.
It seems so simple, but i just can't get it to ...
-3
votes
0answers
89 views
Can anyone explain this behavior of printf? [duplicate]
I have a piece of source code.
include <stdio.h>
int main()
{
int i=1;
printf("%d %d %d %d %d %d",i,i++,++i,i,++i,++i);
return 0;
}
I ran it like always, and this is what I got:
...
0
votes
1answer
11 views
Given, “printf(”%0.Xlf“, somedouble);” where X is the amount of decimal places I want, how do I make X a variable?
I want to write
printf("%0.2lf and %0.2lf", solution1, solution2);
were instead of 2 decimal places, I can use a variable, numberOfDecimalPlaces.
How can I do that? Thanks in advance!
0
votes
1answer
50 views
how to buffer and delay printf() output?
I wrote a C program and in the program there are many printf() which output log information to stdout. Now I want to use multiple processes to run the program simultaneously with different arguments. ...
12
votes
7answers
361 views
How to prevent function from printing?
Is it possible to silence a function?
For example:
#include <stdio.h>
int function(){
printf("BLAH!");
return 10;
}
int main(){
printf("%d", silence( function()) );
return 0;
}
And ...
3
votes
1answer
52 views
C - using scanf to capture date (mm dd yyyy)
This is my first question on Stack Overflow, so bear with me.
I'm writing a program that calculates the number of elapsed days between two dates. To do this, I have to input the dates as integers in ...
0
votes
2answers
46 views
C++ : extern variable inside namespace and printf vs cout
i have a little problem with printf and i don't know why !
=>kernel.h
#ifndef KERNEL_H
#define KERNEL_H
namespace kernel
{
extern const double h;
}
#endif // KERNEL_H
=>kernel.cpp
#include ...
0
votes
2answers
24 views
why does printf space padding only allows one space?
This is my code:
<?php
$str1 = "Hello";
printf("[%99s]",$str1);
?>
I expect it to output 94 spaces as padding to fulfill the min length. Why does it only output 1 space to the right of the ...
3
votes
2answers
62 views
Printf variable number of decimals in float
I found interesting format for printing nonterminated fixed length strings like this:
char newstr[40] = {0};
sprintf(newstr,"%.*s", sizeof(mystr), mystr);
So I think maybe is there a way under ...
1
vote
1answer
42 views
How are params passed when calling Printf from 64 bit asm?
I am learning to do assembly language again, and the only problem I have had so far has been doing calls to C. The book I have is geared to 32 bit, and I am working in 64 bit. Apparently there is a ...
1
vote
2answers
68 views
The printf functions print something that shouldn't, why?
As you can see from the images attached below, adding the second element from the top of the list create a strange behaviour for the printf function.
the function that add a list node is:
void ...
0
votes
1answer
40 views
Alternative and probable better way to printf
I am writing some string to a gstring using printf as:
char *string<i>
/*where string<i> stands for string1, string2
and so on*/
g_string_append_printf (ustring, "@%s{%s,\n",string1, ...
0
votes
1answer
33 views
How can see printf(C code) in eclipse console?
I am working with eclipse, jni, c, CentOS6.
I really want to see some logs from C code, but in eclipse console, it does not show printf Message which happens in C.
Is there any way to print C logs ...
0
votes
0answers
20 views
printf in SPARC prints i for every character
Writing an assembly program that takes in a character and prints it. But for every character no matter what it returns i. The input could be e, j, i, or 8. It always prints out i.
.section ".data"
...
1
vote
1answer
77 views
Formatting a list of doubles into a string
I am trying to format a list of doubles into a string. I would like to turn a list such as:
[0.38, 0.94]
into something like:
"aString 0.380 0.940"
I have tried:
"aString" ++ map (printf ...
2
votes
2answers
85 views
Custom support for __attribute__((format))
Both GCC and Clang have a support to make compile-time checks on variable argument functions like printf. These compilers accept syntax like:
extern void dprintf(int dlevel, const char *format, ...)
...
0
votes
3answers
39 views
Are escape characters in Java platform-dependent?
I just read this question about comparing "%n" and "\n"
What's up with Java's "%n" in printf?
The answer confirms that %n can be used across platform, while \n is not. So I wonder ...
-5
votes
1answer
38 views
Force printf to use two characters
I'm using this code on a PIC18 device with the XC8 compiler:
printf("%x", (unsigned char) some_value);
When some_value is below 0xf0, only one digit is outputted, e.g. c for the value 12. On values ...
0
votes
0answers
28 views
printf-like library with color support?
I am looking for ways how I could add color support to software which I maintain. It consists of many programs and scripts, which shares single xterm terminal, and prints on it using standard ...
-1
votes
2answers
83 views
printf(“%s”,pch) VS. while(printf(“%c”pch[i]))?
i have a string
"This is a simple string"
objective is to find(with strstr) "simple" and replace with "sample"
CODE:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
...
3
votes
2answers
57 views
printing multiple integers at the same time
I was wondering if there is a better way to print an array of ints in c;
At the moment I do a printf("%d" ,.. ) for every int in my array.
However this causes one system call per int? (if my ...
0
votes
2answers
55 views
Printing a string using struct type in C
I am working with struct types. I take in a line from my own file that says "cerberus guards the river styx". When I try to print it out, only the letter 'c' prints. I don't know why this is ...
0
votes
0answers
33 views
Having trouble coming up with a 'display function' or added functionality - c
I'm trying to finish up this program and I've been told that I need to have to have the 'cards' be displayed at after the user quits out.
I've tried everything from having 'draw' return the 'hand' ...
0
votes
0answers
40 views
Useign printf call in assembly
I've a problem with using printf in assembly. Here is a piece of code
push $buff
push $end_str
call printf
add $8, %esp
The o_buff is a variable declared like this : .lcomm o_buff, 32 and end_str ...
10
votes
3answers
102 views
On understanding how printf(“%d\n”, ( { int n; scanf(“%d”, &n); n*n; } )); works in C
I came across this program via a quora answer
#include<stdio.h>
int main() {
printf("%d\n", ( { int n; scanf("%d", &n); n*n; } ));
return 0;
}
I was wondering how does this ...
3
votes
3answers
64 views
System.out.printf vs System.out.format
Are System.out.printf and System.out.format totally the same or perhaps they differ in somehow?
Thanks in advance.
3
votes
1answer
146 views
Can I use StringFormat as TextWriterFormat? kfprintf / kprintf usage
I've got function to log to console
Printf.kprintf
(printfn
"[%s][%A] %s"
<| level.ToString()
<| DateTime.Now)
...
-2
votes
3answers
89 views
Role of % sign in printf statement in following cases [closed]
I am unable to understand the outputs in the following two cases.
Compiler:Borland C++ 5.02 on windows
CASE 1:
#include <stdio.h>
int main()
{
char str[] = "HELLO";
printf("%abc %2s", ...
-1
votes
2answers
257 views
How does printf in c++ process the arguments that are passed to it? [duplicate]
I have been trying to understand how printf processes the arguments that are passed to it. To be more specific can someone please explain how the following outputs occour.
int a=1;
printf("%d %d ...
-1
votes
1answer
48 views
printf() in 32bit g++ and 64bit g++ deals arguments differently?
#include<stdio.h>
int main()
{
long long a=1,b=2,c=3;
long long d=0x123456789ABC;
long long e=0x000000000000;
printf("%d,%d,%d\n",a,b,c);
printf("%d,%d\n",d,e);
return ...
0
votes
3answers
35 views
Why is the line following printf(), a call to sleep(), executed before anything is printed?
I thought I was doing something simple here, but C decided to go asynchronous on me. I'm not sure what's going on. Here's my code:
#include <stdio.h>
int main() {
printf("start");
...
1
vote
3answers
45 views
Java printing double value zero in printf
I have in my function the following statement System.out.printf("The balance is %0.1f", acct.getBalance());, sometimes the balance will be 0, when this is the case, I get MissingFormatWidthException, ...
0
votes
0answers
34 views
making Advanced Logger code for native andorid, error “expected primary-expression before ',' token”
hi i am developing new logger for android.
in vc version i used log like this,
//ref http://stackoverflow.com/questions/8487986/file-macro-shows-full-path
#define CURRENT_FILE_NAME ...
1
vote
2answers
32 views
Ints in C printint weird thing [closed]
I don't understand why this code would print 24 and 20.
int main(){
int m = 24, n = 024;
printf("%d %d", m, n);
return 0;
}
1
vote
5answers
132 views
printf char* pointer which points to long and float
I am doing some exercises from book "Understanding pointers in C". The book gives you a piece of code and asks you for what you get in output.
One of them is the following:
#include <stdio.h>
...
0
votes
2answers
71 views
Pointers in C — adding 1
I have a question about pointers. I am beginning to grasp the concept, but this particular piece of code is threatening that understanding, and I just want to clear it up.
Please note line "B", ...
0
votes
2answers
96 views
Why is my printf printing the wrong values?
I can't figure out why my code is not working. I am trying to create something similar to P2P file transfer where multiple threads simultaneously grab different parts of a file from a pre-existing ...
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
3answers
69 views
Float is printf wrong value
I have another float output issue printing "1.#R", I have narrowed it down to recurring values, so my question is how do I round the value to the 2 decimal places, so I can print the value (but not ...
0
votes
3answers
74 views
What does $%,.2f represent?
I am currently reading the Deitel's book on Java, and came across this code in one of their programs:
public String toString()
{
return String.format( "%s: %s\n%s: $%,.2f; %s: %.2f",
...
0
votes
2answers
49 views
Weird characters when I print a number into a file (bash shell)
I have this line in my script.sh
printf "%d" "$endMS_line"
$endMS_line is a number. I get that number with
endMS_line=`cat file | awk '{if($1=='"$variable"') print NR}'`
And to print it I use
...
1
vote
2answers
56 views
Intro to C: Addition and Printing
I'm trying to making a rudimentary calculator that can perform a variety of arithmetic functions, starting with addition! Right now I've got the basic logic of it worked out, but I'm not sure exactly ...
-1
votes
1answer
85 views
sorting in assembly language getting incorrect output [closed]
I have written sorting code in assembly, but I have a problem in printing out the output.
The code outputs:
Enter the number of elements less than 10:
3
Enter the elements :
8
1
3
The sorted Array ...
1
vote
2answers
38 views
Get target length of *printf function family
I need the target length of how many characters I will need in a *printf function. My scenario is a logging facility that should finally create a string (what happens to it is irrelevant, it must end ...



