What are nested functions in c?
No Answer is Posted For this Question
Be the First to Post Answer
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
What is difference between union and structure in c?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
What are the key features of C?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
Difference between data structure and data base.
7 Answers CTS, Value Labs, Zoho,
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
What is character constants?
When should the const modifier be used?
What are the differences between new and malloc in C?
What is static function in c?