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
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
What are identifiers c?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
What is double pointer in c?
what will happen if you free a pointer twice after allocating memory dynamically ?
Why preprocessor should come before source code?
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
What is advantage of pointer in c?
how many argument we can pas in in a function
How can this be legal c?
What is the difference between ‘g’ and “g” in C?
how to set Nth bit of variable by using MACRO