what are non standard function in c
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of header files?
What is memmove?
Why is c called c?
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
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
I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?
Hi can anyone tell what is a start up code?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
Explain is it better to bitshift a value than to multiply by 2?
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.
Can a binary search tree be used as an index? If yes, how? Explain
Can an array be an Ivalue?