|
||||||
| 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 07:22 AM. Reason: add code tags |
| Sponsored Links |
|
|
|
|||
|
The C89 Draft
Quote:
Last edited by dcs; 06-14-2008 at 10: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 01:50 PM |
| Peculiar UI Problem Needs Tackling | adriyel | C# Programming | 2 | 04-06-2008 07:46 AM |
| Problem read pwd protected Access2K dbase - CR9 & VB6 | mrbar | Visual Basic Programming | 2 | 03-10-2008 04:50 AM |
| How to tackle a programming problem? | TcM | General Programming | 10 | 01-07-2008 11:29 AM |
| A small problem in the output | The_Master | C and C++ | 3 | 12-13-2006 12:04 PM |
| Xav | ........ | 1357.94 |
| MeTh0Dz|Reb0rn | ........ | 1077.71 |
| WingedPanther | ........ | 919.18 |
| marwex89 | ........ | 906.86 |
| morefood2001 | ........ | 900.18 |
| John | ........ | 890.77 |
| Brandon W | ........ | 770.65 |
| chili5 | ........ | 312.39 |
| Steve.L | ........ | 264.99 |
| dcs | ........ | 232.34 |
Goal: 100,000 Posts
Complete: 83%