main()
{
int i;
for(i=0;i<5;i++)
printf("%d",1l<<i);
}
why doesn't 'l' affect the code??????
In 1l, 'l' converts number 1 from int to long int.
It is a valid expression
| Is This Answer Correct ? | 2 Yes | 0 No |
where are auto variables stored? What are the characteristics of an auto variable?
What is linear search?
What is infinite loop?
How do you write a program which produces its own source code as its output?
How do I swap bytes?
Write a program to print all permutations of a given string.
WHAT IS MEANT BY LIFE?
What oops means?
Can you think of a way when a program crashed before reaching main? If yes how?
Can a variable be both constant and volatile?
how can write all 1to 100 prime numbers using for loop,if and break ?
what is event driven software and what is procedural driven software?