answersLogoWhite

0


Best Answer

{}, or the Greek letter phi.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the symbols that you use to denote a null set?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why use a null set?

It is possible to specify a condition which can't be fulfilled, for example, the intersection of two sets that have no element in common. The result would have no elements. Not allowing this kind of operation would be more complicated than defining a null set (or empty set) that has zero elements.


When reading you can use a personal set of symbols to?

represent ideas about what you have read.


Which variable type do you use to accept only non negative integers and null values?

This is the set of natural numbers.


How do you use 's'?

You use apostrophe s to denote possession or a single s to denote plurality.


On gaia how do you get the null crystal on zen gardens in zOMG?

You could get any null in any place by going to that particular place and 'attune' the null/use it to go to null chamber. When you use the null to zen gardens, it will lead you there.


What do chemists use to represent elements and compounds?

Scientists use symbols to represent elements and compounds. The symbols of a chemical element are abbreviations that are used to denote a chemical element. Typically, they are one or two-letters long with the first letter (only) capitalised; temporary names are three-letters long. !


What do you need to order to use symbols to mark a text?

A set of categories. [APEX Learning]


How can you use denote in a setence?

To denote is an indication of something, such as a fever often denotes an infection.


Solution to null pointer assignment error?

Answer#ifndef NULL# define NULL ((void*)0)#endifAnswerDon't use pointers that contain NULL-value. Eg:int *myptr= NULL;...*myptr = 32; /* wrong */


What is the formula of combination of letters numbers and some symbols in Excel?

A combination of letters and numbers and symbols is a character set. To use a formula to combine letter and numbers and symbols is known as concatenation.


What is null character and what is its use in context of string?

null character exists at the end of the string.It denotes the end of it.


What is the use of define key word in c?

Actually, the preprocessor is not part of the C compiler, but here you are: #define is meant to define symbols. Examples #define NULL ((void *)0) #define getchar() getc(stdin)