What does it mean when the linker says that _end is undefined?
No Answer is Posted For this Question
Be the First to Post Answer
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?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
What are macros in C?
Is null valid for pointers to functions?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
What's the difference between constant char *p and char * constant p?
What is the difference between functions getch() and getche()?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
convert 12345 to 54321 withoutusing strig
write a c program to find biggest of 3 number without relational operator?
c program to manipulate x=1!+2!+3!+...+n! using recursion