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 |
what is data structure
Describe newline escape sequence with a sample program?
C program to perform stack operation using singly linked list
Why do we write return 0 in c?
Write a program to show the workingof auto variable.
what are the interview question's in the language c
Are the variables argc and argv are local to main?
Please write the area of a RIGHT ANGLED TRIANGLE.
why ordinary variable store the later value not the initial
What is return type in c?
What's the difference between constant char *p and char * constant p?
How would you write qsort?