当前位置: 首页 > news >正文

BMC PSL function(22)-printf()

printf()

含义:Print text formatted to the C library printf() routine specification

Format

printf(format,[arg1,......,argn])

Parameter

ParameterDefinition
format

text, variable names, and control characters that specify the content and
format of output to the computer or task output window:
 

Valid Values
%d signed decimal (identical to %i)
%i signed decimal (identical to %d)
%u unsigned decimal
%o unsigned octal
%x unsigned hexadecimal using abcedf
%X unsigned decimal using ABCDEF
%c unsigned character
%s character string
%e double precision form drddde±ddd where each d is a digit and r is the radix character
%E do

http://www.lryc.cn/news/529713.html

相关文章:

  • 【数据结构】_复杂度
  • pytorch实现循环神经网络
  • Java 16进制 10进制 2进制数 相互的转换
  • 力扣动态规划-14【算法学习day.108】
  • 数据结构day02
  • 随笔 | 写在一月的最后一天
  • JVM方法区
  • 一文读懂fgc之cms
  • MYSQL 商城系统设计 商品数据表的设计 商品 商品类别 商品选项卡 多表查询
  • HTB:Administrator[WriteUP]
  • 开源项目Umami网站统计MySQL8.0版本Docker+Linux安装部署教程
  • FBX SDK的使用:基础知识
  • VisionMamba安装
  • h2oGPT
  • Win10安装MySQL、Pycharm连接MySQL,Pycharm中运行Django
  • 使用Pygame制作“俄罗斯方块”游戏
  • 【Block总结】ODConv动态卷积,适用于CV任务|即插即用
  • RK3568 opencv播放视频
  • 《LLM大语言模型+RAG实战+Langchain+ChatGLM-4+Transformer》
  • 【搜索回溯算法篇】:拓宽算法视野--BFS如何解决拓扑排序问题
  • 计算机网络 (61)移动IP
  • Elasticsearch+kibana安装(简单易上手)
  • 音视频多媒体编解码器基础-codec
  • 【算法与数据结构】动态规划
  • DeepSeekMoE:迈向混合专家语言模型的终极专业化
  • 什么是Maxscript?为什么要学习Maxscript?
  • HyperLogLog 近似累计去重技术解析:大数据场景下的高效基数统计
  • LabVIEW透镜多参数自动检测系统
  • MySQL数据库(二)- SQL
  • 【Block总结】HiLo注意力,局部自注意力捕获细粒度的高频信息,通过全局注意力捕获低频信息|即插即用