What are the features of c language?
No Answer is Posted For this Question
Be the First to Post Answer
In a switch statement, what will happen if a break statement is omitted?
wt is d full form of c
Which driver is a pure java driver
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
What 'lex' does?
What is volatile variable in c with example?
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
Can the sizeof operator be used to tell the size of an array passed to a function?
what do you mean by inline function in C?
What does the message "automatic aggregate intialization is an ansi feature" mean?
Can true be a variable name in c?