Can you tell me the exact difference between ll deno = 1;
and ll deno = 1ll;
What is difference b/w ll deno = 1ll and ll deno = 1
The ll makes the integer literal of type long long .
So 1LL , is a 1 of type long long .
Without the , the literal would only be of type int .
Can you give me some example where it will creating the difference
if you have a function which accepts two long long intergers as argument and you pass a long long and a constant number
refer this code : - https://ide.codingblocks.com/s/241610
Sir in the video suppose if we do ll deno = 1; then what is the thing where we got the error; like if i want to store a 9999999999999 in deno it can store this number. Why there is a need to do ll deno = 1ll.
you can do ll deno =1 its all same in case of initialization
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.