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 |
Can a binary search tree be used as an index? If yes, how? Explain
atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation
Where can I get an ansi-compatible lint?
how to count no of words,characters,lines in a paragraph.
How can you convert integers to binary or hexadecimal?
Explain how can I pad a string to a known length?
If input is 123 then how to print 100 and 20 and 3 seperately?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
What is the use of printf() and scanf() functions?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
what are the advantages & disadvantages of unions?