代码搜索结果
找到约 10,000 项符合
U 的代码
u_restore.dfm
object F_Restore: TF_Restore
Left = 339
Top = 273
Width = 410
Height = 278
Caption = #36824#21407#25968#25454#24211
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color
u_restore.~pas
unit U_Restore;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, ExtCtrls, jpeg, FileCtrl;
type
TF_Restore = clas
u_backup.~dfm
object F_Backup: TF_Backup
Left = 184
Top = 163
Width = 367
Height = 230
Caption = #22791#20221#25968#25454#24211
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color =
u_backup.pas
unit U_Backup;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, FileCtrl;
type
TF_Backup = class(TForm)
Labe
u_intout.c
#include
void main ()
{
unsigned int value = 42000;
printf("Displaying 42000 as unsigned %u\n", value);
printf("Displaying 42000 as int %d\n", value);
}