how many argument we can pas in in a function
Answer Posted / apurve kadawat
We can pass any no.of parameters.The upperlimit can be found
out by knowing the stack size for that function alloted by
the operating system.Therefore it is dependent upon the
operating system how much stack it is allocating.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Explain that why C is procedural?
Are bit fields portable?
What is struct node in c?
Write a code of a general series where the next element is the sum of last k terms.
You have given 2 array. You need to find whether they will
create the same BST or not.
For example:
Array1:10 5 20 15 30
Array2:10 20 15 30 5
Result: True
Array1:10 5 20 15 30
Array2:10 15 20 30 5
Result: False
One Approach is Pretty Clear by creating BST O(nlogn) then
checking two tree for identical O(N) overall O(nlogn) ..we
need there exist O(N) Time & O(1) Space also without extra
space .Algorithm ??
DevoCoder
guest
Posted 3 months ago #
#define true 1
#define false 0
int check(int a1[],int a2[],int n1,int n2)
{
int i;
//n1 size of array a1[] and n2 size of a2[]
if(n1!=n2) return false;
//n1 and n2 must be same
for(i=0;i
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
What is volatile variable in c with example?
Explain what are binary trees?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
What is the difference between int main and void main in c?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Can we declare function inside main?
What is zero based addressing?
What are linked lists in c?