Vous avez cherché: main program sweep (cycle) (Allemand - Anglais)

Allemand

Traduction

main program sweep (cycle)

Traduction

Anglais

Traduction
Traduction

Traduisez instantanément des textes, des documents et des voix avec Lara

Traduire maintenant

Contributions humaines

Réalisées par des traducteurs professionnels, des entreprises, des pages web ou traductions disponibles gratuitement.

Ajouter une traduction

Allemand

Anglais

Infos

Allemand

main program:

Anglais

quote:

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Allemand

main program features:

Anglais

features :

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Allemand

there is no "main" program.

Anglais

there is no "main" program.

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Avertissement : un formatage HTML invisible est présent

Allemand

frankfurt am main - program manager - us

Anglais

frankfurt am main - systems engineer - us

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Allemand

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

Anglais

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

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Allemand

it contains no relevant changes to the main program.

Anglais

it contains no relevant changes to the main program.

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Allemand

sv : main program v 1.01 authentication : v 1.01

Anglais

sv : main program v 1.01 authentication : v 1.01

Dernière mise à jour : 2011-10-23
Fréquence d'utilisation : 2
Qualité :

Allemand

sv : main program v 2.03 recognition program v 1.00

Anglais

sv : main program v 2.03 recognition program v 1.00

Dernière mise à jour : 2011-10-23
Fréquence d'utilisation : 2
Qualité :

Allemand

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

Anglais

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

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Allemand

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

Anglais

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

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Allemand

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

Anglais

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

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Allemand

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

Anglais

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

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Allemand

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.

Anglais

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.

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Allemand

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.

Anglais

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

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Allemand

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

Anglais

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

Dernière mise à jour : 2018-02-13
Fréquence d'utilisation : 1
Qualité :

Avertissement : un formatage HTML invisible est présent

Obtenez une traduction de meilleure qualité grâce aux
8,883,597,740 contributions humaines

Les utilisateurs demandent maintenant de l'aide :



Nous utilisons des cookies pour améliorer votre expérience utilisateur sur notre site. En poursuivant votre navigation, vous déclarez accepter leur utilisation. En savoir plus. OK