What is static and volatile in c?
Can 'this' pointer by used in the constructor?
Explain what a Binary Search Tree is.
what is the importance of spanning tree?
What does 3 periods mean in texting?
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
WAP to convert text into its ASCII Code and also write a function to decode the text given?
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
what is the format specifier for printing a pointer value?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
State two uses of pointers in C?