What is union and structure?
No Answer is Posted For this Question
Be the First to Post Answer
Define function pointers?
Explain data types & how many data types supported by c?
What is the difference between near, far and huge pointers?
What is wild pointer in c?
What is signed and unsigned?
What are c identifiers?
Explain how do you use a pointer to a function?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Explain the array representation of a binary tree in C.
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }