answersLogoWhite

0

cout << "sup" << endl;

Well, it's not C

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you create a program that will display output?

It must use a function with a "return" statement. Or you could output via console. (.NET CODE(C#)) Console.WriteLine("Output.");


How do you display exponential in C output?

Read you manual concerning printf, the answer you want is in there.


How do you write a program using the gotoxy statement and print function to display letters of the alphabet on the computer screen?

There is no gotoxy statement in C.


How can you display Hindi word in output of java program?

Class hindi { public static void main() { char c; for(c=2309;c&lt;2362;c++) { System.out.println(" "+c); } } }


What is output if we don't write break statement in switch-case in c sharp?

This question cannot be generally answered, the output depends on the actual program.


Which symbol is used as a statement terminator in C?

semicolon ';' (Not applicable for block-statements)


Which statement is not frequently used in C plus plus?

The goto statement.


How do you display del symbol on output screen using C Plus Plus?

The del character, #255, has no symbol. It is a non-printing character, so you cannot display it on the screen.


Write c programs to display 10 line biodata?

A C++ program can be used to write C programs that will display 10 lines of biodata. Many types of C programming can be written with a C++ program.


Why do you use semi colon in do while statement?

A semi-colon is used in a do while statement for the same reason that it is used in any other statement. The rules of C and C++, as well as Java, require that every statement be terminated with a semi-colon.


How do you Hold the output window to display output in C language?

std::cin:get(); I guess it's about TurboC in Windows. 1. Press Alt+F5, to see the program's output 2. Run your .EXE in a separate DOS-window (Command Prompt)


Where you use percent c and percent s in c language?

%c and %s are format characters used for input and output. These are mainly used in scanf and printf statements. %c is used for characters while %s is used for strings. For input, it is used to specify the type of the value to be read while for output, it is used to specify the type of the value to be printed.