What does d mean?
No Answer is Posted For this Question
Be the First to Post Answer
What is c language used for?
Is r written in c?
What are the functions to open and close file in c language?
what is reason of your company position's in india no. 1.
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
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
How pointers are declared?
Differentiate between Macro and ordinary definition.
What is unary operator?
write a program to insert an element at the specified position in the given array in c language
What is identifiers in c with examples?
What is a function simple definition?