Computer Science, asked by HimanshuBhuarya1043, 11 months ago

How to initialize variables in C#?

Answers

Answered by tyagiharsh766
0

int i, j, k;

char c, ch;

float f, salary;

double d;

Eg:- int i = 1007

char c = 'a'

float f = 1072.224

double d = 103.32

Similar questions