码迷,mamicode.com
首页 >  
搜索关键字:signed char    ( 37702个结果
递归存储二叉树和遍历二叉树
#include<stdio.h> #include<stdlib.h> typedef char ElemType; //结点定义 typedef struct node{ ElemType data; struct node* lchild,*rchild; }BiTNode,*BiTree; ...
分类:其他好文   时间:2021-03-17 14:03:43    阅读次数:0
类的转换
类型转换 public class 类的转换 { public static void main(String[] args) {? /*类型转换 低 高 byte,short,char-int-long-float-double 高到低强制转换,低到高自动转换 */? //强制转换? int a ...
分类:其他好文   时间:2021-03-16 14:07:25    阅读次数:0
java基础
基本类型 整型:byte、short、int、long 浮点型:float、double 字符型:char 布尔型:boolean(只有两个值true与false) 运算符: 1.算术运算符 +、-、*、/、%(求余)、++(自增1)、--(自减1) %用来求余数(取模) ++a(--a)与a++( ...
分类:编程语言   时间:2021-03-16 13:58:27    阅读次数:0
makefile 中 $@ $^ %< 使用
假设有下面这样的一个程序,源代码如下: 1 /* main.c */ 2 #include "mytool1.h" 3 #include "mytool2.h" 4 5 int main(int argc,char **argv) 6 { 7 mytool1_print("hello"); 8 my ...
分类:其他好文   时间:2021-03-16 13:48:47    阅读次数:0
写接口练习题
create table TbStudent(stuid integer not null,stuname varchar(20) not null,stusex bit default 1,stubirth datetime not null,stutel char(11),stuaddr var ...
分类:其他好文   时间:2021-03-16 13:47:22    阅读次数:0
实验1 C 语言开发环境使用和数据类型,运算符,表达式
1.实验任务11.行方向 #include<stdio.h> int main(){ printf(" o o\n"); printf("<H> <H>\n"); printf(" I I I I\n"); return 0; } 2.列方向 #include<stdio.h> int main() ...
分类:编程语言   时间:2021-03-15 11:30:29    阅读次数:0
基础知识复习 (二) 数据类型转换,运算符和流程控制语句
一,数据类型转换 (1),自动类型转换: 1. 特点:代码不需要进行特殊处理,自动完成。 2. 规则:数据范围从小到大。 3.转换规则:范围小的类型向范围大的类型提升, byte、short、char 运算时直接提升为 int 。 byte、short、char‐‐>int‐‐>long‐‐>flo ...
分类:其他好文   时间:2021-03-15 11:23:32    阅读次数:0
C++实现对本地文件加行号并输出到本地文件
#include <fstream> #include <strstream> using namespace std; int main(int argc,char*argv[]) { strstream textfile; ifstream in(argv[1]); textfile << in ...
分类:编程语言   时间:2021-03-15 11:07:17    阅读次数:0
CSS浮动
5 浮动 标准文档流 块级元素:独占一行 h1~h6 p div 列表。。。 行内元素:不独占一行 span a img strong 行内元素可以被包含在块级元素中,反之,则不可以~ 5.2 display 却可以这样做 <!DOCTYPE html> <html lang="en"> <head ...
分类:Web程序   时间:2021-03-15 10:58:26    阅读次数:0
Linux多进程的应用
前面的章节介绍socket通信的时候,socket的服务端在同一时间只能和一个客户端通信,并不是服务端有多忙,而是因为单进程的程序在同一时间只能做一件事情,不可能一边等待客户端的新连接一边与其它的客户端进行通信。 一、并发的服务端 如果把socket服务端改为多进程,在每次accept到一个客户端的 ...
分类:系统相关   时间:2021-03-15 10:55:03    阅读次数:0
37702条   上一页 1 ... 29 30 31 32 33 ... 3771 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!