How to declare an integer variable which can except null? a) int? x b) int x c) int x IS NULL d) int ISNULL(X)
Surajit Chakraborty
Hi you can declare like that, this is call nullable type of variable int? i = 50; double? d1 =4.4; bool? flag = null; char? letter = 'h'; int?[] arr = new int?[20]; string is not a nullable type
a,b