Hai cercato la traduzione di main program sweep (cycle) da Tedesco a Inglese

Tedesco

Traduttore

main program sweep (cycle)

Traduttore

Inglese

Traduttore
Traduttore

Traduci istantaneamente testi, documenti e voce con Lara

Traduci ora

Contributi umani

Da traduttori professionisti, imprese, pagine web e archivi di traduzione disponibili gratuitamente al pubblico.

Aggiungi una traduzione

Tedesco

Inglese

Informazioni

Tedesco

main program:

Inglese

quote:

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Tedesco

main program features:

Inglese

features :

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Tedesco

there is no "main" program.

Inglese

there is no "main" program.

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Attenzione: contiene formattazione HTML nascosta

Tedesco

frankfurt am main - program manager - us

Inglese

frankfurt am main - systems engineer - us

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Tedesco

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

Inglese

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

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Tedesco

it contains no relevant changes to the main program.

Inglese

it contains no relevant changes to the main program.

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Tedesco

sv : main program v 1.01 authentication : v 1.01

Inglese

sv : main program v 1.01 authentication : v 1.01

Ultimo aggiornamento 2011-10-23
Frequenza di utilizzo: 2
Qualità:

Tedesco

sv : main program v 2.03 recognition program v 1.00

Inglese

sv : main program v 2.03 recognition program v 1.00

Ultimo aggiornamento 2011-10-23
Frequenza di utilizzo: 2
Qualità:

Tedesco

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

Inglese

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

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Tedesco

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

Inglese

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

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Tedesco

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

Inglese

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

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Tedesco

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

Inglese

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

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Tedesco

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.

Inglese

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.

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Tedesco

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.

Inglese

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

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Tedesco

// 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"); }

Inglese

// 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"); }

Ultimo aggiornamento 2018-02-13
Frequenza di utilizzo: 1
Qualità:

Attenzione: contiene formattazione HTML nascosta

Ottieni una traduzione migliore grazie a
8,883,542,648 contributi umani

Ci sono utenti che chiedono aiuto:



I cookie ci aiutano a fornire i nostri servizi. Utilizzando tali servizi, accetti l'utilizzo dei cookie da parte nostra. Maggiori informazioni. OK