You searched for: main program sweep (cycle) (Tyska - Engelska)

Tyska

Översätt

main program sweep (cycle)

Översätt

Engelska

Översätt
Översätt

Översätt texter, dokument och röst direkt med Lara

Översätt nu

Mänskliga bidrag

Från professionella översättare, företag, webbsidor och fritt tillgängliga översättningsdatabaser.

Lägg till en översättning

Tyska

Engelska

Info

Tyska

main program:

Engelska

quote:

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Tyska

main program features:

Engelska

features :

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Tyska

there is no "main" program.

Engelska

there is no "main" program.

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Varning: Innehåller osynlig HTML-formatering

Tyska

frankfurt am main - program manager - us

Engelska

frankfurt am main - systems engineer - us

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Tyska

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

Engelska

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

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Tyska

it contains no relevant changes to the main program.

Engelska

it contains no relevant changes to the main program.

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Tyska

sv : main program v 1.01 authentication : v 1.01

Engelska

sv : main program v 1.01 authentication : v 1.01

Senast uppdaterad: 2011-10-23
Användningsfrekvens: 2
Kvalitet:

Tyska

sv : main program v 2.03 recognition program v 1.00

Engelska

sv : main program v 2.03 recognition program v 1.00

Senast uppdaterad: 2011-10-23
Användningsfrekvens: 2
Kvalitet:

Tyska

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

Engelska

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

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Tyska

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

Engelska

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

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Tyska

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

Engelska

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

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Tyska

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

Engelska

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

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Tyska

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.

Engelska

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.

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Tyska

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.

Engelska

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

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Tyska

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

Engelska

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

Senast uppdaterad: 2018-02-13
Användningsfrekvens: 1
Kvalitet:

Varning: Innehåller osynlig HTML-formatering

Få en bättre översättning med
8,781,646,280 mänskliga bidrag

Användare ber nu om hjälp:



Vi använder cookies för att förbättra din upplevelse. Genom att fortsätta besöka den här webbplatsen godkänner du vår användning av cookies. Läs mer. OK