Just to be clear of your question, by run c/c++ on linux, do u mean running a compiled c/C++ file or how to compile and execute the compiled file? please clarify your question so that its easier for one to help you. Also I don't understand how you being on fendora has anything to do with your question as its linux related.
Hi techme! use this to run and write any C program in Fedora! Use any text editior and write your program without inlcude files and then save it with .C extension. Now go to terminal and the type this command Code: gcc fille_name.c -o <output_file_name.out> This will create the output file and to run the program use Code: ./<output_file_name.out> Remember, while using commands in terminal, use in correct directory. Thanks!