Which is the memory area not included in C program? give the
reason
No Answer is Posted For this Question
Be the First to Post Answer
a=5 a=a++/++a
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
How can I get random integers in a certain range?
Tell me what is null pointer in c?
Which driver is a pure java driver
What are the types of operators in c?
write a program in c to read array check element is present or not?
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
Write a program to add a given duration with time(24hrs format)
Tell me when would you use a pointer to a function?
write a program to display numbers from 1 to 10 and 10 to 1?
Is null always equal to 0(zero)?