What is the difference between array_name and &array_name?
No Answer is Posted For this Question
Be the First to Post Answer
What is a method in c?
Why isnt any of this standardized in c?
Explain the array representation of a binary tree in C.
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
#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?
What are the key features of C?
What is diffrance between declaration and defination of a variable or function
Differentiate between calloc and malloc.
What is the exact difference between '\0' and ""
Explain what are linked list?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }