검색어: main program sweep (cycle) (독일어 - 영어)

독일어

번역기

main program sweep (cycle)

번역기

영어

번역기
번역기

Lara로 텍스트, 문서 및 음성을 즉시 번역

지금 번역하기

인적 기여

전문 번역가, 번역 회사, 웹 페이지 및 자유롭게 사용할 수 있는 번역 저장소 등을 활용합니다.

번역 추가

독일어

영어

정보

독일어

main program:

영어

quote:

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

독일어

main program features:

영어

features :

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

독일어

there is no "main" program.

영어

there is no "main" program.

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

경고: 보이지 않는 HTML 형식이 포함되어 있습니다

독일어

frankfurt am main - program manager - us

영어

frankfurt am main - systems engineer - us

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

독일어

frankfurt am main - program manager (m/w) automotive

영어

düsseldorf - senior / manager (m/w) wirtschaftsprüfung - energiewirtschaft / public s...

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

독일어

it contains no relevant changes to the main program.

영어

it contains no relevant changes to the main program.

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

독일어

sv : main program v 1.01 authentication : v 1.01

영어

sv : main program v 1.01 authentication : v 1.01

마지막 업데이트: 2011-10-23
사용 빈도: 2
품질:

독일어

sv : main program v 2.03 recognition program v 1.00

영어

sv : main program v 2.03 recognition program v 1.00

마지막 업데이트: 2011-10-23
사용 빈도: 2
품질:

독일어

if filename is null, then the returned handle is for the main program.

영어

if filename is null, then the returned handle is for the main program.

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

독일어

if filename is a null pointer, then the returned handle is for the main program.

영어

if filename is a null pointer, then the returned handle is for the main program.

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

독일어

- myfunction is a function in the main program that can be called from the tcc program

영어

- myfunction is a function in the main program that can be called from the tcc program

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

독일어

the last days, i worked on the main program, too, so the progress on the map was much slower than before.

영어

the last days, i worked on the main program, too, so the progress on the map was much slower than before.

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

독일어

what its makefile and sconscript do is to compile a set of libraries/dlls and then compile the main program and link to these dlls and/or libraries.

영어

what its makefile and sconscript do is to compile a set of libraries/dlls and then compile the main program and link to these dlls and/or libraries.

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

독일어

vom main program aus gehen sie auf das settings-menü und wählen configure e-mail/pop3. dann geben sie die entsprechenden daten in das fenster ein.

영어

from the main program, go to the settings menu and choose configure e-mail/pop3. then enter the appropriate settings in the configuration window.

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

독일어

// date structure struct date { int day, month, year; }; // global program variables string globalstr="global string"; int fctcallcount=0; // main program main() { // local variables of main string resultstr="function not yet called"; struct date today = { 0, 0, 0 }; double p=0.0, b=2.0, e=10.0; // print the global variables printf("fctcallcount=%d, %s\n",fctcallcount,globalstr); // print the local variables printf("resultstr=\"%s\"\n",resultstr); printf("today : %d,%d,%d",today.day,today.month,today.year); printf("\t\tb=%.1f, e=%.1f, p=%.1f\n",b,e,p); // call function resultstr=function(today,b,e,p); // print the global variables printf("fctcallcount=%d, %s\n",fctcallcount,globalstr); // print the local variables printf("resultstr=\"%s\"\n",resultstr); printf("today : %d,%d,%d",today.day,today.month,today.year); printf("\t\tb=%.1f, e=%.1f, p=%.1f\n",b,e,p); } string function(curdate,base,exponent,power) struct date curdate; // current date parameter double base; // base parameter double exponent; // exponent parameter double power; // power parameter { // increment the function call count fctcallcount++; // set the global string globalstr="global string changed by function"; // get the current date get_date(curdate.day,curdate.month,curdate.year); // calculate the power power=pow(base,exponent); // return with a result string return("function result string"); }

영어

// date structure struct date { int day, month, year; }; // global program variables string globalstr="global string"; int fctcallcount=0; // main program main() { // local variables of main string resultstr="function not yet called"; struct date today = { 0, 0, 0 }; double p=0.0, b=2.0, e=10.0; // print the global variables printf("fctcallcount=%d, %s\n",fctcallcount,globalstr); // print the local variables printf("resultstr=\"%s\"\n",resultstr); printf("today : %d,%d,%d",today.day,today.month,today.year); printf("\t\tb=%.1f, e=%.1f, p=%.1f\n",b,e,p); // call function resultstr=function(today,b,e,p); // print the global variables printf("fctcallcount=%d, %s\n",fctcallcount,globalstr); // print the local variables printf("resultstr=\"%s\"\n",resultstr); printf("today : %d,%d,%d",today.day,today.month,today.year); printf("\t\tb=%.1f, e=%.1f, p=%.1f\n",b,e,p); } string function(curdate,base,exponent,power) struct date curdate; // current date parameter double base; // base parameter double exponent; // exponent parameter double power; // power parameter { // increment the function call count fctcallcount++; // set the global string globalstr="global string changed by function"; // get the current date get_date(curdate.day,curdate.month,curdate.year); // calculate the power power=pow(base,exponent); // return with a result string return("function result string"); }

마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:

경고: 보이지 않는 HTML 형식이 포함되어 있습니다

인적 기여로
8,877,187,299 더 나은 번역을 얻을 수 있습니다

사용자가 도움을 필요로 합니다:



당사는 사용자 경험을 향상시키기 위해 쿠키를 사용합니다. 귀하께서 본 사이트를 계속 방문하시는 것은 당사의 쿠키 사용에 동의하시는 것으로 간주됩니다. 자세히 보기. 확인