CExpression[arg]
is a symbolic representation of code that will format using CForm[arg].
CExpression
CExpression[arg]
is a symbolic representation of code that will format using CForm[arg].
Details and Options
- SymbolicC expressions are inert; they evaluate to themselves, staying in an unevaluated form.
- SymbolicC expressions can be converted into a C string with ToCCodeString.
Examples
Basic Examples (1)
To use SymbolicC you first need to load the package:
Needs["SymbolicC`"]Here the result is generated by CForm:
CExpression[a + b]//ToCCodeStringYou can prevent evaluation by using HoldForm:
CExpression[HoldForm[a = b]]//ToCCodeStringYou can include a semicolon by inserting the arguments into a list:
{CExpression[HoldForm[a = b]], CExpression[a * b]}//ToCCodeStringSee Also
Tech Notes
Related Guides
Text
Wolfram Research (2010), CExpression, Wolfram Language function, https://reference.wolfram.com/language/SymbolicC/ref/CExpression.html.
CMS
Wolfram Language. 2010. "CExpression." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/SymbolicC/ref/CExpression.html.
APA
Wolfram Language. (2010). CExpression. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/SymbolicC/ref/CExpression.html
BibTeX
@misc{reference.wolfram_2026_cexpression, author="Wolfram Research", title="{CExpression}", year="2010", howpublished="\url{https://reference.wolfram.com/language/SymbolicC/ref/CExpression.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_cexpression, organization={Wolfram Research}, title={CExpression}, year={2010}, url={https://reference.wolfram.com/language/SymbolicC/ref/CExpression.html}, note=[Accessed: 13-June-2026]}