What is volatile variable how do you declare it?
What are the Advantages of using macro
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
a simple c program using 'for' loop to display the output 5 4 3 2 1
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is meant by 'bit masking'?
Do you know the use of 'auto' keyword?
how to go with this?
How can you return multiple values from a function?
Sir i need notes for structure,functions,pointers in c language can you help me please
What is the purpose of void pointer?