2011-11-06 92 views
2

我寫了這個C程序的Win32/C編譯器,但是當我試圖在Linux機器或codepad.org使用gcc運行這個它顯示'conio.h:沒有這樣的文件或目錄編譯終止'什麼是修改要做不包括任何其他新執行該程序包括像curses.h如何使用Windows conio.h將代碼移植到Linux?

#include<stdio.h> 
#include<conio.h> 
void main() 
    { 
    int i=0,j=0,k=0,n,u=0; 
    char s[100],c2,c[10]; 
    char c1[3]={'a','b','c'}; 
    clrscr(); 
    printf("no of test cases:"); 
    scanf("%d",&n); 
    for(u=0;u<n;u++) 
    { 
printf("Enter the string:"); 
scanf("%s",s); 
    i=0; 
while(s[i]!='\0') 
    { 
    if(s[i+1]=='\0') 
     break; 
    if(s[i]!=s[i+1]) 
    { 
     for(j=0;j<3;j++) 
     { 
    if((s[i]!=c1[j])&&(s[i+1]!=c1[j])) 
    { 
     c2=c1[j]; 
    } 
} 
    s[i]=c2; 

    for(k=i+1;k<100;k++) 
    { 
s[k]=s[k+1]; 
} 
    i=0; 
    } 
    else 
    i++; 
} 
c[u]=strlen(s); 

} 
for(u=0;u<n;u++) 
printf("%d\n",c[u]); 
getch(); 
} 

回答

0

我沒有看你的代碼,看看它是否需要這三個函數。但這是獲得它們的簡單方法。通常比使用getch()更好。清除我的屏幕時,clrscr()也沒什麼好玩的!

#include<stdio.h> 
#include <stdlib.h> // system 
#include <string.h> // strlen 
#include <termios.h> // getch 
#include <unistd.h> // getch 

void clrscr() 
{ 
    // Works on systems that have clear installed in PATH 
    // I don't like people clearing my screen though 
    system("clear"); 
} 


int getch() 
{ 
    struct termios oldt, newt; 
    int ch; 

    tcgetattr(STDIN_FILENO, &oldt); 
    newt = oldt; 
    newt.c_lflag &= ~(ICANON | ECHO); 
    tcsetattr(STDIN_FILENO, TCSANOW, &newt); 
    ch = getchar(); 
    tcsetattr(STDIN_FILENO, TCSANOW, &oldt); 
    return ch; 
} 

getch()

3

它看起來像你從conio.h使用的唯一功能是clrscr()getch()。只要把它們拿出來,你應該沒問題 - 它們似乎不會影響程序的運行。他們在這裏使用更像是Windows終端行爲的解決方法。

有兩點要注意:

  1. main()應該返回int
  2. strlen()string.h中定義 - 您可能會想要包括這一點。
+0

無殘培()程序超時.. – Vilva

2

回顧你的問題我可以看到clrscr()和getch()你使用的是conio.h但是這個頭文件在gcc中不可用。因此,對於clrscr使用

system("clear"); 

,正如你所提到的殘培()使用的library

乾杯!

+0

詛咒是矯枉過正。 'gets()'會做得很好。 –