What is the size of a union variable?
No Answer is Posted For this Question
Be the First to Post Answer
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
Is javascript written in c?
What is the difference between null pointer and wild pointer?
When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
What is a static variable in c?
What functions are used in dynamic memory allocation in c?
why array index always starts from zero??
Difference between strcpy() and memcpy() function?
In which header file is the null macro defined?
What is the size of enum in bytes?
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
Write a program on swapping (100, 50)