answersLogoWhite

0

The extension is actually immaterial. It merely serves to give the operating system a hint as to the file's content, allowing the file to be associated with a particular application, such as a GIF file viewer or an image editor application. In order to save a GIF file, you must first re-encode the image (assuming it is not already in GIF format), and save the output to a file with a GIF extension.

User Avatar

Wiki User

11y ago

What else can I help you with?

Continue Learning about Engineering

What is the difference of C to C plus plus and Dev C?

C and C++ are both programming languages whereas Dev C++ is an implementation of C/C++. Dev C++ is free, was written in Delphi and includes the MinGW compiler.


What is the header file for using graphics in c plus plus?

There is no graphic.h in the standard C++ language. It typically ships with 3rd party C++ implementations that incorporate the Borland Graphic Interface or one of its variants, such as Embarcadero Builder. It can also be used with Dev C++ if you install the WinBGIM library. Its primary purpose is to provide Windows graphics support since C++ has no built-in graphics support of any kind.


Where can you practice c plus plus is there a website that can be useful?

C Plus Plus, or C++ is an intermediate-level computer programming language. It was developed by Bjarne Stroustrup starting in 1979. You can practice C Plus Plus at a site such as Cprogramming.


How do you delete dev cpp source files when it says you don't have permission?

This has nothing to do with devC++, it has to do with Windows file permissions. You clearly don't have the access level required to delete these files so you'd be best advised to leave them well alone or ask your supervisor to delete them for you.


How to write a program with Dev-C?

Read the help file!!! Or type this in. #include <stdio.h> int main() { printf('I really am a noob'); printf('If I was any noobier, i'd be illegal'); printf('Press any key to continue...'); getchar() return (0) } click compile & run. Have fun. =]

Related Questions

How do you add a new library for Dev C plus plus?

If you want to know about adding new header files, then it is simple. Write your functions in a file. Save that file with extension .h in the include directry. Now, you can include this file using the #include directive


What are the objects used in dev c plus plus?

Objects in Dev C++ are the same as objects in generic C++, insofar as an object is an instance of a class.


What do you use forward errors to a file in UNIX?

2>/dev/null


What is the difference of C to C plus plus and Dev C?

C and C++ are both programming languages whereas Dev C++ is an implementation of C/C++. Dev C++ is free, was written in Delphi and includes the MinGW compiler.


Which is better dev c plus plus or Microsoft Visual C plus plus 2008 Express Edition?

Dev c++ is a good tool, but it's outdated. VS is the best for software development especially with shareware license.


Which Linux commands can be used to create backups of filesystems and directories?

best option is to use dd command as belloaw :dd if=INPUT-FILE-NAME of=OUTPUT-FILE-NAMESo to backup /dev/hda3 under Linux command should be as follows :# dd if=/dev/hda3 of=/backup/myhostname-15-nov-05-hda3.bak.ddBacking up entire disk/partition with dd commandBackup /dev/hda to /dev/hdb: # dd if=/dev/hda of=/dev/hdb conv=noerror,sync


What device file is used to refer to the first partition on your first IDE hard disk?

Today that would be /dev/sda1. If you have an older system or kernel: /dev/hda1.


When you create a device special file in what folder should it be stored in Linux?

Usually they are stored in /dev


How can I Create a file named file22 using the command cat and redirections?

cat /dev/null > file22


What file is used to the list of partitions and file systems that are mounted at boot time?

/etc/fstab only root can change, users can view it.


Which commands can be used to assure that a file 'myfile' exists?

cp myfile /dev/null if it does not exist it will give you : cp: cannot stat `myfile': No such file or directory


How do I mount a file system in Linux?

Use the mount command mount /dev/sda1 /media/<destination dir> you may have to specify a file system in some cases. Else the command will recognize it by default mount -t <FS TYPE> /dev/sda1 /media/<destination dir>