论坛


2008年11月27日 星期四

学点 C 语言(12): 数据类型 - 整型(int)、字符(char)、浮点(float、double)

万一| 万一的 Delphi 博客 |09:07:00

C 语言数据类型: 基本类型、构造类型、指针类型、空类型.基本类型又包括: 整型、字符、浮点(单精度、双精度)、枚举.构造类型又包括: 数组、结构体、公用体.1. 显示整型(int)的最小、最大值:#include <stdio.h> #include <limits.h> int main() { int n1,n...

Interesting Stuff about Delphi Prism

Nick Hodges| Nick Hodges |09:04:33

First, in the coming months, we will be providing feature updates for Delphi Prism.  This is a bit different from what we’ve done in the past. This means that there will be new features available for Delphi Prism between major releases....

RAD Studio 2009 subscription e-mails

Bob Swart| Dr.Bob’s Delphi Notes |08:56:36

RAD Studio 2009 pre-orders started last week (when the pricing was announced - see www.bobswart.nl for BeNeLux prices), but although no actual boxes have shipped yet, last night the subscription e-mails have been sent (and received) for the ESD (E...

Listing Windows processes Programmatically using Delphi

About.com| About.com Delphi Programming |03:00:25

in Advanced Delphi :: Do you know what programs are running on your computer? There are multiple programs running invisibly in the background to monitor and manage how the operating...

2008年11月26日 星期三

ASyncSocket 1.0.3

CodeGear| CodeGear-CodeCentral Delphi |23:54:51

ASyncSocket is Delphi's asynchronous socket component based on Winsock2Common property of this is as follows : * Winsock2 based * IPv6 Support * Asynchronous TCP Server and Client * UnicodeString support (Delphi 2009 or abobe) * Tex...

Memories of Turbo Pascal version 1.0 - Gerold Martens, Australia

David I| Sip from the Firehose |22:59:14

From: Gerold Martens Sent: Thursday, February 17, 2005 9:59 PM Subject: Pascal/Delphi Story [ David I. note - this story dates back to an email I received in 2005 as part of the Delphi 10 year celebration. It also has memories of Turbo Pascal vers...

教你如何用Delphi生成GBK码表

幸福苹果| 幸福苹果-delphi |22:15:00

阅读全文类别:delphi编程 查看评论

学点 C 语言(11): goto 语句

万一| 万一的 Delphi 博客 |21:59:00

例1:#include <stdio.h> #include <string.h> int main() { char str[256]; scanf("%s", str); if (strlen(str)10) { goto Label1; } else { goto Label2; } Label1: printf("\n输入内容没有超过 10 个?..

Partner DVD ISO for RAD Studio 2009 and Delphi Prism 2009

CodeGear| CodeGear-CodeCentral Delphi |18:25:14

This ISO includes third party software for use with RAD Studio 2009 and Delphi Prism 2009. It is the ISO for the Partner DVD (Disk 2 in the Delphi Prism media kit or Disk 3 in the RAD Studio 2009 package).Browsable versions of the files are also a...

学点 C 语言(10): switch 语句

万一| 万一的 Delphi 博客 |18:10:00

1. 常规:#include <stdio.h> int main() { int i; for (i = 0; i10; i++) { switch (i) { case 1: printf("%d\n", i); break; case 3: printf("%d\n", i); ...

Extras directory files for Delphi 2009 and C++Builder 2009

CodeGear| CodeGear-CodeCentral Delphi |18:01:16

This .zip contains files from the /extras directory on the Delphi 2009 and C++Builder 2009 DVD that aren't included in the ESD download version of the product. Files include: - BDE merge modules in English, French, German and Japanese - source fi...

两个结构体可以直接赋值吗? - 回复 "JohnsonAnother" 的问题

万一| 万一的 Delphi 博客 |15:46:00

问题来源:http://www.cnblogs.com/del/archive/2008/11/26/1031787.html#1382525两个结构体可以直接赋值!, 测试如下:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TFo...

Delphi 2009 Handbook PDF eBook

CodeGear| CodeGear-CodeCentral Delphi |15:13:06

Delphi 2009 HandbookThe guide to what's new in Delphi 2009From the best-selling author of the Mastering Delphi seriesThe Delphi 2009 Handbook covers all the new featrues of Delphi 2009, from Unicode support to generics, from anonymous methods to o...

学点 C 语言(9): if 语句

万一| 万一的 Delphi 博客 |13:04:00

1. 常规:#include <stdio.h> int main() { int i; for (i = 0; i10; i++) { if (i%2 == 0) printf("%d 是偶数\n", i); if (i%2 != 0) printf("%d 是奇数\n", i); } getchar(); return 0; }#include <stdio.h> int main...

学点 C 语言(8): while 与 do while 循环

万一| 万一的 Delphi 博客 |12:11:00

1. while 循环:#include <stdio.h> int main() { int i=0; while (i10) { i++; printf("%d\n", i); } getchar(); return 0; }2. do while 循环:#include <stdio.h> int main() { int i=0; do { i+...

« 上一页

下一页 »