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.


What are the two ways of formating of output in c?

In C, the two primary ways of formatting output are using printf() and fprintf(). The printf() function is used for standard output to the console, while fprintf() allows for formatted output to a specified file stream. Both functions utilize format specifiers to control the display of variables, such as %d for integers and %f for floating-point numbers. Additionally, sprintf() can be used to format output into a string instead of sending it directly to a console or file.


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)