answersLogoWhite

0

I would say the semi colon ; and theese {}

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Engineering

What are the wildcard characters in C?

The wildcard characters in C programming include the asterisk (*) and the question mark (?). An asterisk stands for any missing number of characters in a string while a question mark represents exactly one missing character.


What is return type of string in c?

In C programming, a string doesn't have a specific return type as it's essentially an array of characters. So, if a function is returning a string, it should be declared to return a pointer to a char (char*), since a string in C is represented as an array of characters terminated by a null character ('\0').


Which character comprise the c character set?

C does not use, nor requires the use of, every character found on a modern computer keyboard. The only characters required by the C Programming Language are as follows:A - Za -z0 - 9space . , : ; ' $ "# % & ! _ {} [] () $$$$ &&&& |+ - / * =The use of most of this set of characters will be discussed throughout the course.


How do you type c with accent?

Use charmap.exe, (you can use these characters: ĆĈĊČ, and many others)


What is mean by text and binary files used in c?

A text file is a file containing human readable characters organized into records (lines) that are separated by the new-line character. The run-time library parses on this basis, and converts carriage-return/line-feed sequences to and from the new-line character as needed. (In a Windows/DOS environment.)A binary file is a file containing any characters. There is no file based delimiting - all record distinctions are made by the program. (The exception to this is in the IBM (and other?) family of MainFrame computers where logical record sizes are declared in the DCB, and the file is not processed in stream mode.)