设置 | 登录 | 注册

Notepad++安裝C語言跳轉到函數定義處的插件NppGTags

以XP系統下的Notepad++ v7.9.2 (32-bit)版本為例。
去NppGTags官網(https://github.com/pnedev/nppgtags/re...
巨大八爪鱼 5-15 巨大八爪鱼 (点击/回复: 242/0)

哪裡有問題

艰难快乐学习运动 3-23 啊啊是谁都对 (点击/回复: 237/1)

【C語言程序】Nokia5110液晶位圖取碼程序

#include <stdio.h>
#include <Windows.h>
int main(void)
{...
巨大八爪鱼 8-5 巨大八爪鱼 (点击/回复: 616/4)

【講解】char *和char[]的區別

【字符數組:char arr[] = "abcd"】
性質:
1.數組名arr本身是一個指針變量,但是不能移動該指針
2.字符數組中的內容可讀可寫
3.以\0結束
4.可...
巨大八爪鱼 6-20 巨大八爪鱼 (点击/回复: 507/0)

【程序】C語言輸入密碼顯示*

#include <conio.h>
#include <stdio.h>
void main()
{
    char...
巨大八爪鱼 6-19 巨大八爪鱼 (点击/回复: 472/3)

【教程】用calloc函數創建二維數組的兩種方法

【方法一:一次性創建全部數組空間】
#include <stdio.h>
#include <stdlib.h>
int main()
{...
巨大八爪鱼 6-13 巨大八爪鱼 (点击/回复: 895/3)

【程序】根據scanf的返回值判定輸入的有效性

【示例程序】
#include <stdio.h>
void test(char *str)
{
    int d, n, r;...
巨大八爪鱼 6-13 巨大八爪鱼 (点击/回复: 561/3)

【表格】log2對數表

log2(1)=0.000000
log2(2)=1.000000
log2(3)=1.584963
log2(4)=2.000000
log2(5)=2.321928...
巨大八爪鱼 5-23 巨大八爪鱼 (点击/回复: 669/4)

【程序】time.h中函數的使用

#include <stdio.h>
#include <string.h>
#include <time.h>
void display(str...
巨大八爪鱼 5-21 巨大八爪鱼 (点击/回复: 507/1)

【方法】C語言用庫函數獲取指定日期是星期幾

【代碼】
#include <stdio.h>
#include <string.h> // memset函數所在頭文件
#include <time...
巨大八爪鱼 5-21 巨大八爪鱼 (点击/回复: 560/1)

【程序】點餐系統——資料庫:Access 2003

【源文件main.c】
#include <stdio.h>
#include <stdlib.h> // system函數所在地
#include <...
巨大八爪鱼 5-10 巨大八爪鱼 (点击/回复: 838/7)

返回函數指針的函數寫法

【函數定義】
int abc(char *s)
{
    puts(s);
    return 0;
}...
巨大八爪鱼 5-7 巨大八爪鱼 (点击/回复: 525/1)

【程序】C語言用字典排序法列舉一個數組的所有全排

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void swap(int...
巨大八爪鱼 3-18 巨大八爪鱼 (点击/回复: 567/5)

【方法】在Linux C程序中嵌入彙編語言

首先,編寫一個簡單的C程序:
#include <stdio.h>
void fun(int *num, int *num2);
int main()
{...
巨大八爪鱼 2-26 巨大八爪鱼 (点击/回复: 839/17)

Linux系統下編譯libxml2程序的方法

Makefile:
# 連接
test: test.o
    gcc test.o -o test -lxml2
# 編譯
test.o:...
巨大八爪鱼 2-20 巨大八爪鱼 (点击/回复: 721/3)
本吧共有主题数42个,帖子数219篇,会员1位。

内容转换:

发表帖子
标题:
内容:
用户名: 您目前是匿名发表。
验证码:
看不清?换一张
©2010-2025 Purasbar Ver3.0 [手机版] [桌面版]
除非另有声明,本站采用知识共享署名-相同方式共享 3.0 Unported许可协议进行许可。