Queue in Data Structure is :
ALIFO
BFIFO
CLILO
DBoth LIFO & LILO
ALIFO
BFIFO
CLILO
DBoth LIFO & LILO
Related Questions:
' സി ' പ്രോഗ്രാമിങ് ലാംഗ്വേജുമായി ബന്ധപ്പെട്ട് ശരിയായ പ്രസ്താവന ഏതൊക്കെയാണ് ?
What is the value of sum after the execution of the following code?
int sum = 0;
for (int i = -5; i<=;i++)
{
if (!i) break;
sum += i;
}