Can 'this' pointer by used in the constructor?
What is use of null pointer in c?
Difference between Class and Struct.
13 Answers Ericsson, Motorola, Wipro,
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
Differentiate between full, complete & perfect binary trees.
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Explain what happens if you free a pointer twice?
What are different types of pointers?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
Write a simple program to find the size of different basic data types in C.