Share on Facebook Share on Twitter Email
Answers.com

Dc

 

abbr.
  1. da capo
  2. direct current
  3. or D.C. District of Columbia
  4. Doctor of Chiropractic

Search unanswered questions...
Enter a question here...
Search: All sources Community Q&A Reference topics
 
is short for:

Meaning Category
Da CapitalMiscellaneous->Funnies
Daily ChumpInternet->Chat
Dallas CowboysCommunity->Sports
Damn Cat (from the movie That Darn Cat)Community->Media
Damp CityMiscellaneous->Funnies
Dante CulpepperCommunity->Famous
Dark CavernsGovernmental->State & Local
Dark ConspiracyMiscellaneous->Science Fiction
Darn CatCommunity->Famous
Data CartridgeComputing->General
Data CommunicationComputing->General
Data ContextComputing->General
Data CoordinatorGovernmental->NASA
Datametrics CorporationBusiness->AMEX Symbols
Date CreatedComputing->Databases
Date of CreationComputing->Databases
David CoulterCommunity->Famous
David's CapitalMiscellaneous->Funnies
Dead CenterGovernmental->Military
Deadlock CityMiscellaneous->Funnies
Death CapitolMiscellaneous->Funnies
Death CertificateCommunity
Death CultCommunity->Law
Deccan ChargersCommunity->Sports
Declare ConstantComputing->Assembly
Deep CameoMiscellaneous->Coins
Define ConstantComputing->Assembly
Defocus ControlMiscellaneous->Photography
Del CapoInternational->Italian
Delicious CompanionMiscellaneous->Food
Delivery ConfirmationBusiness->General
Delivery CoordinatorBusiness->Positions
Delray Connecting Railroad CompanyRegional->Railroads
Delta CollegeAcademic & Science->Universities
Demo ControlBusiness->Products
Democracia CristianaInternational->Spanish
Democratic CommunityCommunity
Denied ChargesCommunity->Law
Dennis ChildsCommunity->Famous
Denver, ColoradoGovernmental->State & Local
Dependent ClauseCommunity->Educational
Depressing ComicsMiscellaneous->Funnies
Depth ControlAcademic & Science->Ocean Science
Desk CalculatorBusiness->Products
Desktop CalculatorComputing->General
DetcomGovernmental->FBI Files
Detective ClusterCommunity->Law
Detective ComicsBusiness->Firms
Detective ConstableGovernmental->Police
Detroit CityRegional->US States
Devastating CharismaInternet->Chat
Developing CountriesGovernmental->United Nations
Development-CenterGovernmental->NASA
Device ContextComputing->Networking
Device CoordinatesGovernmental->Military
Devil ChildMiscellaneous->Science Fiction
Dielectric ConstantAcademic & Science->Chemistry
Academic & Science->Electronics
Diet CompositionMedical->Physiology
Difference of Convex functionsAcademic & Science->Mathematics
Difficulty ClassCommunity->Sports
Digital CameraMiscellaneous->Photography
Digital CopierBusiness->General
Digital CountsMiscellaneous->Unit Measures
Dining CapitalCommunity
Direct CableCommunity->Media
Direct CommandGovernmental->NASA
Direct ConnectBusiness->Firms
Direct CurrentAcademic & Science->Electronics
Community->Media
Governmental->Military
Governmental->Transportation
DiscMedical->Physiology
DischargeMedical->Physiology
DischargedMedical->Physiology
DisconnectInternet
DisconnectedInternet->Chat
Computing->Telecom
DiscontinueMedical->Physiology
Dismounted CounterminesGovernmental->Military
Disorderly ConductCommunity->Law
Display CouplerGovernmental->NASA
Disrupt ChemistryMedical->Laboratory
Distributed ComputingAcademic & Science->Chemistry
Distribution CenterBusiness->General
District ChampionMiscellaneous->Toastmasters
District CourtCommunity->Law
District of ColumbiaGovernmental->Military
Regional->US States
District of CrimeMiscellaneous->Funnies
Division ChiefBusiness->Positions
División de ContrainteligenciaGovernmental->Military
Doctor ClownCommunity->Famous
Doctor of ChiropracticMedical->Physiology
Business->Positions
Doctrine and CovenantsCommunity->Law
Document ContainerBusiness->Products
Documentary CentralCommunity->Media
Dodge CityMiscellaneous->Clothes
Doesn't CareAcademic & Science->Mathematics
Doesn't CountInternet->Chat
Domain ComponentInternet
Computing->Networking
Domain ControllerComputing->Networking
Don't CareAcademic & Science->Electronics
Don't ComeInternet->Chat
Don't CompeteMiscellaneous->Funnies
Don't ConcedeCommunity->Sports
Donald CameronCommunity->Famous
Donut CopMiscellaneous->Funnies
Doofus ConglomerateMiscellaneous->Funnies
Dork CampMiscellaneous->Funnies
Dot ComInternet
Douglas CommercialGovernmental->Transportation
Downtown ComebackCommunity
Draconic CombineMiscellaneous->Science Fiction
Drew CareyCommunity->Famous
Drill CollarAcademic & Science->Geology
Drop CapCommunity->Media
Dual ControlAcademic & Science->Electronics
Dual CorrespondenceBusiness->General
Duplicate ChromaMiscellaneous->Photography
During ChristCommunity->Religion
Dusty CatCommunity->Sports
Dysfunctional CityCommunity
The Douglass CampusAcademic & Science->Universities

Click here to submit an acronym.


WordNet: DC
Top
Note: click on a word meaning below to see its connections and related words.

The noun has 2 meanings:

Meaning #1: the district occupied entirely by the city of Washington; chosen by George Washington as the site of the nation's capital and carve out of land ceded by Maryland and Virginia
  Synonym: District of Columbia

Meaning #2: an electric current that flows in one direction steadily
  Synonym: direct current


Wikipedia: Dc (computer program)
Top

dc is a cross-platform reverse-polish desk calculator which supports arbitrary-precision arithmetic.[1] It is one of the oldest Unix utilities, predating even the invention of the C programming language; like other utilities of that vintage, it has a powerful set of features but an extremely terse syntax.[2][3] Traditionally, the more user-friendly (with its infix notation) bc calculator program was implemented on top of dc, although more modern implementations are related in the opposite fashion: dc uses bc's library for arithmetic.[4]

This article provides some examples in an attempt to give a general flavour of the language; for a complete list of commands and syntax, one should consult the man page for one's specific implementation.

Contents

Basic operations

To multiply four and five in dc (note that most of the whitespace is optional):

4 5 *
p

This translates into "push four and five onto the stack, then, with the multiplication operator, pop two elements from the stack, multiply them and push the result back on the stack." Then the 'p' command is used to examine (print out to the screen) the top element on the stack.

To change the precision, the command is 'k'. Since the default precision is zero, this sequence of commands produces '0' as a result:

2 3 / p

By adjusting the precision with 'k', arbitrary number of decimal places can be produced. This command sequence outputs '.66666'.

5 k
2 3 / p

To evaluate \sqrt{(12 + (-3)^4)\over11}-22: ('v' computes the square root of the top of the stack and '_' is used to input a negative number):

12 _3 4 ^ + 11 / v 22 -
p

To swap the top two elements of the stack, use the 'r' command. To duplicate the top element, use the 'd' command.

Input/Output

To read a line from stdin, use the '?' command. This will evaluate the line as if it were a dc command, and so it is necessary that it be syntactically correct and potentially be a security problem since the '!' dc command will allow arbitrary command execution.

As mentioned above, 'p' will print the top of the stack with a newline after it. 'P' will omit the trailing newline. 'f' will dump the entire stack with one entry per line.

dc also support arbitrary input and output radices. The 'i' command will pop the top of the stack and use it for the input base. Hex digits must be in upper case to avoid collisions with dc commands and are not limited to A-F if the input radix is larger than 16. The 'o' command does the same for the output base, but keep in mind that the input base will affect the parsing of the every numeric value afterwards so it is usually advisable to set the output base first. To read the values, the 'K', 'I' and 'O' will push the current precision, input radix and output radix on to the top of the stack.

As an example, to convert from hex to binary:

16i2o DEADBEEFp

outputs 11011110101011011011111011101111.

Registers

In addition to these basic arithmetic and stack operations, dc includes support for macros, conditionals and storing of results for later retrieval.

The mechanism underlying macros and conditionals is the register, which in dc is a storage location with a single character name which can be stored to and retrieved from: 'sc' pops the top of the stack and stores it in register c, and 'lc' pushes the value of register c onto the stack. For example:

3 sc 4 lc * p

Registers can also be treated as secondary stacks, so values can be pushed and popped between them and the main stack using the 'S' and 'L' commands.

Strings

String values are enclosed in '[' and ']' characters and may be pushed on the stack and stored in registers. The 'a' command will convert a the low order byte of the numeric value into a ASCII character, or if the top of the stack is a string it will replace it with the first character of the string. There are no ways to build up strings or perform string manipulation other than executing it with the 'x' command.

The '#' character begins a comment to the end of the line.

Macros

Macros are then implemented by allowing registers and stack entries to be strings as well as numbers. A string can be printed, but it can also be executed (i.e. processed as a sequence of dc commands). So for instance we can store a macro to add one and then multiply by 2 into register m:

[1 + 2 *] sm

and then (using the 'x' command which executes the top of the stack) we can use it like this:

3 lm x p

Conditionals

Finally, we can use this macro mechanism to provide conditionals. The command '=r' will pop two values from the stack, and execute the macro stored in register 'r' only if they are equal. So this will print the string 'equal' only if the top of the stack is equal to 5:

[[equal]p] sm 5 =m

Other conditionals are '>', '!>', '<', '!<', '!=', which will execute the specified macro if the top two values on the stack are greater, less than or equal to ("not greater"), less than, greater than or equal to ("not less than"), and not equals, respectively.

Loops

Looping is then possible by defining a macro which (conditionally) reinvokes itself. A simple factorial of the top of the stack might be implemented as:

# F(x): return x!
# if x-1 > 1
#    return x * F(x-1)
# otherwise
#    return x
[d1-d1<F*]dsFxp

The '1Q' command will exit from a macro, allowing an early return. 'q' will quit from two levels of macros (and dc itself if there are less than two levels on the call stack). 'z' will push the current stack depth before the 'z' operation.

Examples

As an example of a relatively simple program in dc, this command (in 1 line):

dc -e '[[Enter a number (metres), or 0 to exit]psj]sh[q]sz[lhx?d0=z10k39.370079*.5+0k12~1/rn[ feet ]
Pn[ inches]P10Pdx]dx'

will convert distances from metres to feet and inches; the bulk of it is concerned with prompting for input, printing output in a suitable format and looping round to convert another number.

As an example, here is an implementation of the Euclidean algorithm to find the GCD:

dc -e '??[dSarLa%d0<a]dsax+p' # shortest
dc -e '[a=]P?[b=]P?[dSarLa%d0<a]dsax+[GCD:]Pp' # easier-to-read version

Computing the factorial of an input value, n! = \prod_{i=1}^n i

dc -e '?[q]sQ[d1=Qd1-lFx*]dsFxp'

A more complex example performs Diffie-Hellman key exchange. This was popular as a signature block among cypherpunks during the ITAR debates[5]:

#!/usr/bin/perl -- -export-a-crypto-system-sig Diffie-Hellman-2-lines
($g,$e,$m)=@ARGV,$m||die"$0 gen exp mod\n";print`echo "16dio1[d2%Sa2/d0<X+d
*La1=z\U$m%0]SX$e"[$g*]\EszlXx+p|dc`

A commented version is slightly easier to understand and shows how to use loops, conditionals, and the 'q' command to return from a macro. With a modern version of dc, the '|' command can be used to do arbitrary precision modular exponentiation without needing to write the X function.

#!/usr/bin/perl
 
my ($g,$e,$m) = map { "\U$_" } @ARGV;
die "$0 gen exp mod\n" unless $m;
 
print `echo $g $e $m | dc -e '
# Hex input and output
16dio
# Read m, e and g from stdin on one line
?SmSeSg
 
# Function z: return g * top of stack
[lg*]sz
 
# Function Q: remove the top of the stack and return 1
[sb1q]sQ
 
# Function X(e): recursively compute g^e % m
# It is the same as Sm^Lm%, but handles arbitrarily large exponents.
# Stack at entry: e
# Stack at exit: g^e % m
# Since e may be very large, this uses the property that g^e % m == 
#	if( e == 0 )
#		return 1
#	x = (g^(e/2)) ^ 2
#	if( e % 2 == 1 )
#		x *= g
#	return x %
[
	d 0=Q		# return 1 if e==0 (otherwise, stack: e)
	d 2% Sa		# Store e%2 in a (stack: e)
	2/		# compute e/2
	lXx		# call X(e/2)
	d*		# compute X(e/2)^2
	La1=z		# multiply by g if e%2==1
	lm %		# compute (g^e) % m
] SX
 
le	# Load e from the register
lXx	# compute g^e % m
p	# Print the result
'`;

References

External links

Native Windows port of bc, which includes dc.


Shopping: Dc
Top
 
 
Learn More
Apollon musagète (music)
direct-current circuit theory (electricity)
direct-current transducer (electronics)

In washigton DC what does the DC stand for? Read answer...
What does dc stand for in the dc test? Read answer...
What is the difference of DC and pulsating DC? Read answer...

Help us answer these
Where in dc?
Where was dc at?
What is dc and dc-?

Post a question - any question - to the WikiAnswers community:

 

Copyrights:

Dictionary. The American Heritage® Dictionary of the English Language, Fourth Edition Copyright © 2007, 2000 by Houghton Mifflin Company. Updated in 2007. Published by Houghton Mifflin Company. All rights reserved.  Read more
Abbreviations. STANDS4.com - The source for acronyms and abbreviations. Copyright ©2004-2007 STANDS4 LLC. All rights reserved.  Read more
WordNet. WordNet 1.7.1 Copyright © 2001 by Princeton University. All rights reserved.  Read more
Wikipedia. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article "Dc (computer program)" Read more