|
||||||
| C and C++ C and C++ forum for discussing all forms of C except for C#. These languages are powerful low level languages used for creating Operating Systems, Device Drivers, compilers and much more. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
hello my dear friends;
I was reading part of a C code that i confronted with a question that i have copied and pasted for you. my problem is in line 10 & 13 below. that I have mentioned them below. what does a * do in this program? it has just one specifier like %d or %f but in front of it has two value. what has happened to the next one? thanks if you answer me. Code:
/* varwid.c -- uses variable-width output field */
#include <stdio.h>
int main(void)
{
unsigned width, precision;
int number = 256;
double weight = 242.5;
printf("What field width?\n");
scanf("%d", &width);
10 printf("The number is:%*d:\n", width, number);
printf("Now enter a width and a precision:\n");
scanf("%d %d", &width, &precision);
13 printf("Weight = %*.*f\n", width, precision, weight);
printf("Done!\n");
return 0;
}
What field width? 6 The number is : 256: Now enter a width and a precision: 8 3 Weight = 242.500 Done! Last edited by WingedPanther; 06-15-2008 at 08:22 AM. Reason: add code tags |
| Sponsored Links |
|
|
|
|||
|
The C89 Draft
Quote:
Last edited by dcs; 06-14-2008 at 11:34 PM. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| A little problem with C | Irfanerol | C and C++ | 4 | 07-25-2008 02:50 PM |
| Peculiar UI Problem Needs Tackling | adriyel | C# Programming | 2 | 04-06-2008 08:46 AM |
| Problem read pwd protected Access2K dbase - CR9 & VB6 | mrbar | Visual Basic Programming | 2 | 03-10-2008 05:50 AM |
| How to tackle a programming problem? | TcM | General Programming | 10 | 01-07-2008 12:29 PM |
| A small problem in the output | The_Master | C and C++ | 3 | 12-13-2006 01:04 PM |
| WingedPanther | ........ | 2753.6 |
| Xav | ........ | 2704 |
| Brandon W | ........ | 1702.32 |
| John | ........ | 1207.73 |
| marwex89 | ........ | 1175.24 |
| morefood2001 | ........ | 966.05 |
| dcs | ........ | 655.75 |
| Steve.L | ........ | 475.59 |
| orjan | ........ | 418.58 |
| Aereshaa | ........ | 383.54 |