- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我有一个特定的 C 程序,当我编译和运行时,它可以在我的 Mac 上运行。我还在学校的linux计算机上通过ssh进行了测试,运行良好。然而,我的 friend 有一台PC,他使用PuTTY访问Linux计算机,并且使用完全相同的代码,他在运行程序时总是出现段错误。为什么会这样?
下面列出了代码。我已经提供了完整的代码,但是正如我们通过 print 语句发现的那样,问题在于主 block 早期的 int counter = 0;
行:
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
typedef struct Nodes{
char firstName[40];
char lastName[40];
char townName[70];
struct Nodes* next;
} Node;
//-- create head global variable.
Node* head;
//-- check if a char array contains a dash (to check for the 9 digit zip code)
bool containsDash(char* string){
char *s;
s = strchr (string, '-');
if (s==NULL){
return false;
}
else{
return true;
}
}
//-- insert node after ptr, with given attributes.
void insertNodeAfter(Node* ptr, char* fName, char* lName, char* tName){
Node* newPtr = (Node*) malloc(sizeof(Node));
strcpy(newPtr->firstName, fName);
strcpy(newPtr->lastName, lName);
strcpy(newPtr->townName, tName);
newPtr->next = ptr->next;
ptr->next = newPtr;
}
//-- insert node before head.
Node* insertNodeBeforeHead(char* fName, char* lName, char* tName){
Node* ptr = (Node*) malloc(sizeof(Node));
strcpy(ptr->firstName, fName);
strcpy(ptr->lastName, lName);
strcpy(ptr->townName, tName);
ptr->next = head;
head = ptr;
return ptr;
}
//-- check if char array starts with start
bool startsWith(char *start, char *str){
size_t lenstart = strlen(start);
size_t lenstr = strlen(str);
if (lenstart > lenstr){
return false;
}
else{
return strncmp(start, str, lenstart) == 0;
}
}
//-- check if nodes have equal attributes.
bool nodesEqual(Node* first, Node* second){
if (strcmp(first->firstName, second->firstName) == 0 && strcmp(first->lastName, second->lastName) == 0 && strcmp(first->townName, second->townName) == 0){
return true;
}
else{
return false;
}
}
//-- delete ptr node
void deleteNode(Node* ptr){
if (nodesEqual(ptr, head)){
head = ptr->next;
free(ptr);
}
else{
Node* temp = head;
while(1){
if (nodesEqual(temp->next, ptr)){
temp->next = temp->next->next;
free(ptr);
break;
}
else{
temp = temp->next;
}
}
}
}
//-- delete node with the given first and last name
void deleteNodeByInfo(char* fName, char* lName){
if (head == NULL){
return;
}
Node* temp = head;
while(1){
if (strcmp(temp->firstName, fName) == 0 && strcmp(temp->lastName, lName) == 0){
deleteNode(temp);
break;
}
if (temp->next != NULL){
temp = temp->next;
}
else{
break;
}
}
}
//-- take the current attributes and make a node in the correct spot
void insertNodeInCorrectSpot(char* fName, char* lName, char* tName){
//-- take 2 pointers separated by one link, look for a spot to insert node between these pointers
Node* pointer = head;
Node* pointer2 = head;
if (pointer->next != NULL){
pointer2 = pointer2->next;
}
else{
pointer2 = pointer2->next;
}
if (strcmp(tName, pointer->townName) < 0){
Node* newHead = insertNodeBeforeHead(fName, lName, tName);
head = newHead;
}
else{
while(strcmp(tName, pointer2->townName) > 0){
if (pointer2->next != NULL){
pointer = pointer->next;
pointer2 = pointer2->next;
}
else{
pointer = pointer2;
break;
}
}
insertNodeAfter(pointer, fName, lName, tName);
}
}
//-- remove spaces at the end of a string
void removeSpacesAtEnd(char* input){
int end = strlen(input) - 1;
if (isspace(input[end])){
input[end] = '\0';
}
if (isspace(input[--end])){
removeSpacesAtEnd(input);
}
}
//-- print the attributes of a given node
void printNode(Node* pointer){
printf("%s", pointer->firstName);
// printf("%s", " ");
printf("%s", pointer->lastName);
// printf("%s", " ");
printf("%s\n", pointer->townName);
}
// -d is option for debug.
int main(int argc, char* argv[]){
int counter = 0; //-- keep counter to keep track of cycle
char *tempChar, *tempFName, *tempLName, *tempTName;
//-- create buffers to store first name, last name, town name
tempChar = (char*)malloc(100*sizeof(char));
tempFName = (char*)malloc(40*sizeof(char));
tempLName = (char*)malloc(40*sizeof(char));
tempTName = (char*)malloc(70*sizeof(char));
while(counter < 600){
fgets(tempChar, 100, stdin);
//-- remove newline delimiter
char *pos;
if ((pos=strchr(tempChar, '\n')) != NULL)
*pos = '\0';
//-- The text will always go in a cycle of 6. Use modular division to figure out what is in the line being read.
if (counter % 6 == 0){
strncpy(tempFName, tempChar, strlen(tempChar));
removeSpacesAtEnd(tempFName);
strcat(tempFName, " ");
}
else if (counter % 6 == 1){
strncpy(tempLName, tempChar, strlen(tempChar));
removeSpacesAtEnd(tempLName);
if (counter == 1){
size_t len = strlen(tempChar);
tempLName[len] = '\0';
}
strcat(tempLName, " ");
}
else if (counter % 6 == 3){
if (containsDash(tempChar)){
strncpy(tempTName, tempChar, strlen(tempChar)-15);
}
else{
strncpy(tempTName, tempChar, strlen(tempChar)-9);
}
removeSpacesAtEnd(tempTName);
strcat(tempTName, " ");
}
else if (counter % 6 == 4){
if (counter == 4){
head = (Node*) malloc(sizeof(Node));
strcpy(head->firstName, tempFName);
strcpy(head->lastName, tempLName);
strcpy(head->townName, tempTName);
}
else{
insertNodeInCorrectSpot(tempFName, tempLName, tempTName);
}
memset(tempFName, 0, strlen(tempFName));
memset(tempLName, 0, strlen(tempLName));
memset(tempTName, 0, strlen(tempTName));
}
memset(tempChar, 0, strlen(tempChar));
counter++;
}
}
最佳答案
我不知道这是否是你 friend 遇到的同样的问题。但是在添加了 stdbool.h 后,我可以通过像这样运行它来在我的 mac 上获得段错误:
$ ./testit < /etc/group
这里出了问题:
//-- remove spaces at the end of a string
void removeSpacesAtEnd(char* input){
int end = strlen(input) - 1;
if (isspace(input[end])){
input[end] = '\0';
}
if (isspace(input[--end])){
removeSpacesAtEnd(input);
}
}
输入错误:
"# Note that this file is consulted directly only when the system i"
该行倒数第二个位置包含空格,但最后一个位置不包含空格。这会导致 removeSpacesAtEnd()
函数无限递归,直到填满调用堆栈。
最简单的修复方法是将第二个“if” block 移到第一个“if” block 内,这样它仅在输入的最后一个字符是空格时执行:
//-- remove spaces at the end of a string
void removeSpacesAtEnd(char* input){
int end = strlen(input) - 1;
if (isspace(input[end])){
input[end] = '\0';
if (isspace(input[--end])){
removeSpacesAtEnd(input);
}
}
}
修复该问题后,程序现在在这里崩溃:
else if (counter % 6 == 3){
if (containsDash(tempChar)){
strncpy(tempTName, tempChar, strlen(tempChar)-15);
}
else{
strncpy(tempTName, tempChar, strlen(tempChar)-9); <-- Here
}
所以,这个程序可能还有其他问题。
您应该学习如何使用调试器。这真的不难,而且会节省你很多令人沮丧的时间。以下是我如何使用 OSX 调试器 lldb 来找出第二次崩溃:
使用调试符号(-g)编译程序:
$ gcc -g -o testit testit.c
$
在“testit”程序上调用调试器。在 Linux 上,您可以使用 gdb 而不是 lldb,但我将在此处使用的命令是相同的。
$ lldb testit
(lldb) target create "testit"
Current executable set to 'testit' (x86_64).
(lldb)
运行“testit
(lldb) run < /etc/group
Process 40951 launched: '/Users/kherron/x/testit' (x86_64)
Process 40951 stopped
* thread #1: tid = 0xc882f9, 0x00007fff8bde3c69 libsystem_platform.dylib`_platform_bzero$VARIANT$Unknown + 41, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=1, address=0x100200000)
frame #0: 0x00007fff8bde3c69 libsystem_platform.dylib`_platform_bzero$VARIANT$Unknown + 41
libsystem_platform.dylib`_platform_bzero$VARIANT$Unknown:
-> 0x7fff8bde3c69 <+41>: rep
0x7fff8bde3c6a <+42>: stosb %al, %es:(%rdi)
0x7fff8bde3c6b <+43>: movq %rdx, %rax
0x7fff8bde3c6e <+46>: popq %rbp
(lldb)
是的,这对我来说也是官样文章。别担心。让我们看看这里的函数调用堆栈。 “bt”是“backtrace”,打印调用堆栈。
(lldb) bt
* thread #1: tid = 0xc882f9, 0x00007fff8bde3c69 libsystem_platform.dylib`_platform_bzero$VARIANT$Unknown + 41, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=1, address=0x100200000)
* frame #0: 0x00007fff8bde3c69 libsystem_platform.dylib`_platform_bzero$VARIANT$Unknown + 41
frame #1: 0x00007fff8e90e40d libsystem_c.dylib`stpncpy + 70
frame #2: 0x00007fff8e980f12 libsystem_c.dylib`__strncpy_chk + 38
frame #3: 0x0000000100001c20 testit`main(argc=1, argv=0x00007fff5fbffb70) + 752 at testit.c:201
frame #4: 0x00007fff8b56c5c9 libdyld.dylib`start + 1
(lldb)
第 3 帧看起来像程序中的一行。我们来看看。
(lldb) up 3
frame #3: 0x0000000100001c20 testit`main(argc=1, argv=0x00007fff5fbffb70) + 752 at testit.c:201
198 strncpy(tempTName, tempChar, strlen(tempChar)-15);
199 }
200 else{
-> 201 strncpy(tempTName, tempChar, strlen(tempChar)-9);
202 }
203 removeSpacesAtEnd(tempTName);
204 strcat(tempTName, " ");
好的,打印当时tempChar的值。
(lldb) p tempChar
(char *) $0 = 0x0000000100104b80 "##"
为了清楚地说明这一点,请打印出表达式“strlen(tempChar)-9”的值:
(lldb) p strlen(tempChar) - 9
error: 'strlen' has unknown return type; cast the call to its declared return type
error: 1 errors parsing expression
(lldb) p (int)(strlen(tempChar)) - 9
(int) $1 = -7
因此,它将负长度传递给 strlen()。
关于从 windows 和 mac 通过 ssh 编译和运行 C 程序 -- windows 出现 seg 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32547313/
好的,所以我想从批处理文件运行我的整个工作环境... 我想要实现什么...... 打开新的 powershell,打开我的 API 文件夹并从该文件夹运行 VS Code 编辑器(cd c:\xy;
我正在查看 Cocoa Controls 上的示例并下载了一些演示。我遇到的问题是一些例子,比如 BCTabBarController ,不会在我的设备上构建或启动。当我打开项目时,它看起来很正常,没
我刚刚开始学习 C 语言(擅长 Java 和 Python)。 当编写 C 程序(例如 hello world)时,我在 ubuntu cmd 行上使用 gcc hello.c -o hello 编译
我在 php 脚本从 cron 开始运行到超时后注意到了这个问题,但是当它从命令行手动运行时这不是问题。 (对于 CLI,PHP 默认的 max_execution_time 是 0) 所以我尝试运行
我可以使用命令行运行测试 > ./node_modules/.bin/wdio wdio.conf.js 但是如果我尝试从 IntelliJ 的运行/调试配置运行它,我会遇到各种不同的错误。 Fea
Error occurred during initialization of VM. Could not reserve enough space for object heap. Error: C
将 Anaconda 安装到 C:\ 后,我无法打开 jupyter 笔记本。无论是在带有 jupyter notebook 的 Anaconda Prompt 中还是在导航器中。我就是无法让它工作。
我遇到一个问题,如果我双击我的脚本 (.py),或者使用 IDLE 打开它,它将正确编译并运行。但是,如果我尝试在 Windows 命令行中运行脚本,请使用 C:\> "C:\Software_Dev
情况 我正在使用 mysql 数据库。查询从 phpmyadmin 和 postman 运行 但是当我从 android 发送请求时(它返回零行) 我已经记录了从 android 发送的电子邮件是正确
所以这个有点奇怪 - 为什么从 Java 运行 .exe 文件会给出不同的输出而不是直接运行 .exe。 当 java 在下面的行执行时,它会调用我构建的可与 3CX 电话系统配合使用的 .exe 文
这行代码 Environment.Is64BitProcess 当我的应用单独运行时评估为真。 但是当它在我的 Visual Studio 单元测试中运行时,相同的表达式的计算结果为 false。 我
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 8 年前。 Improve
我写了一个使用 libpq 连接到 PostgreSQL 数据库的演示。 我尝试通过包含将 C 文件连接到 PostgreSQL #include 在我将路径添加到系统变量 I:\Program F
如何从 Jenkins 运行 Android 模拟器来运行我的测试?当我在 Execiute Windows bath 命令中写入时,运行模拟器的命令: emulator -avd Tester 然后
我已经配置好东西,这样我就可以使用 ssl 登录和访问在 nginx 上运行的 errbit 我的问题是我不知道如何设置我的 Rails 应用程序的 errbit.rb 以便我可以运行测试 nginx
我编写了 flutter 应用程序,我通过 xcode 打开了 ios 部分并且应用程序正在运行,但是当我通过 flutter build ios 通过 vscode 运行应用程序时,我得到了这个错误
我有一个简短的 python 脚本,它使用日志记录模块和 configparser 模块。我在Win7下使用PyCharm 2.7.1和Python 3.3。 当我使用 PyCharm 运行我的脚本时
我在这里遇到了一些难题。 我的开发箱是 64 位的,windows 7。我所有的项目都编译为“任何 CPU”。该项目引用了 64 位版本的第 3 方软件 当我运行不使用任何 Web 引用的单元测试时,
当我注意到以下问题时,我正在做一些 C++ 练习。给定的代码将不会在 Visual Studio 2013 或 Qt Creator 5.4.1 中运行/编译 报错: invalid types 'd
假设我有一个 easteregg.py 文件: from airflow import DAG from dateutil import parser from datetime import tim
我是一名优秀的程序员,十分优秀!