Explain how can you tell whether two strings are the same?
No Answer is Posted For this Question
Be the First to Post Answer
Where register variables are stored in c?
List the difference between a "copy constructor" and a "assignment operator"?
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
why ordinary variable store the later value not the initial
What are the salient features of c languages?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
How many types of arrays are there in c?
What are the types of bitwise operator?
What are the main characteristics of c language describe the structure of ac program?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is structure pointer in c?
What are the different types of control structures in programming?