What is "Hungarian Notation"?
No Answer is Posted For this Question
Be the First to Post Answer
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
If null and 0 are equivalent as null pointer constants, which should I use?
Bit swapping
What is the 'named constructor idiom'?
What is advantage of pointer in c?
what is the meaning of java that is (J A V A) full form of JAVA
71 Answers AKS University, Bhel, BNL, BPO, HCL, Peacecon,
What happens if header file is included twice?
What is wrong in this statement?
Which function in C can be used to append a string to another string?
What are static functions?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
Define C in your own Language.