defining variables in one line code example
Example 1: assign multiple vabies in one line
#Instead Of
a = 1
b = ('Hello')
#You Can Do
a,b = 1,'Hello'
Example 2: c++ assign multiple variables at once
int column = 0, row = 0, index = 0;
#Instead Of
a = 1
b = ('Hello')
#You Can Do
a,b = 1,'Hello'
int column = 0, row = 0, index = 0;