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 |
write a program to gat the digt sum of a number (et. 15= >1+5=6)
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
What are the parts of c program?
What is main () in c?
Why main function is special give two reasons?
What are the types of variables in c?
Compare interpreters and compilers.
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
What is the difference between char array and char pointer?
write a program to swap two numbers without using temporary variable?
What does c value mean?
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.