What are local static variables?
No Answer is Posted For this Question
Be the First to Post Answer
What is an array in c?
What is volatile variable in c?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What do you mean by team??
What are terms in math?
Differentiate between functions getch() and getche().
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
IS Doon college of Engn.. has good faculty
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search