What does %p mean c?
No Answer is Posted For this Question
Be the First to Post Answer
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
how to capitalise first letter of each word in a given string?
What are external variables in c?
What does volatile do?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
Can a pointer be volatile in 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
The statement, int(*x[]) () what does in indicate?
Describe explain how arrays can be passed to a user defined function
What happens if you free a pointer twice?
What is the difference between fork() and vfork()?
What is cohesion and coupling in c?