answersLogoWhite

0

10 x what = 1.5

User Avatar

Xochilt Melgar

Lvl 2
1y ago

What else can I help you with?

Related Questions

Can a nokia 2700 classic download games that are over 1000KB?

Yes u can download uc browser and the download jar files of any size but remember uc browser modifes the file name therefore after downloadin the file change the '_' to '.' and have fun


Where can you get a MYST download?

You can download the MYST ISO file from many different torrent sites. As it would be illegal to do so, I can't post a link for it here. Remember: Google is your friend!


Why can you not download a pdf file in Gmail?

You can download any file from Gmail service. It could be a PDF file, Word file or a multimedia one. The option for download is the down arrow.


Is there a file i can download and do you know the name?

i am wondering what file are u talking about. if u mean the flash video file, you can download with leawo youtube download


How do you define a function?

Put a function prototype in a header file or before the function is called in a C source file. void foo(void); or int bar(int,float char*);


How do you find out if a download is safe?

You can either download from a safe website which are well known ones which scan the file before letting your download it. OR you can download the file and then upload the file to virustotal and get it scanned .


Can I download torrent file with other software like internet download managerI?

No you can not download torrent file with idm.you can use other software like vuz to download torrent file


How do you diable download file in Google Chrome?

You can download a file by clicking Save file as in the web browser. You can see the list of downloaded files in the download tab.


How can you make an header file in c language?

Using a text editor. Example: /* myheader.h */ #ifndef MYHEADER_H #define MYHEADER_H extern int myvariable; extern int myfunction (int x, int y, int z); #endif


How do I put songs onto my computer I tried mp3skull etc but when I click download it plays the song it doesn't download I thought it had to do with my internet browser which is chrm int safri fox?

you right click download and click save as, then rename the song as its title, then save onto music file, then DONE this works for mp3skull


ICA file download?

file .ica


How do you read the number of capital letters in a input file using c language?

#include <stdio.h> #include <ctype.h> ... int caps = 0; int c; file = fopen ("InputFile", "r"); while ((c = fgetc (file)) != EOF) { if (isupper (c)) ++caps; } fclose(file); ...