Explain the difference between #include "..." And #include <...> In c?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
Can include files be nested? How many levels deep can include files be nested?
Is r written in c?
why do some people write if(0 == x) instead of if(x == 0)?
i=10,j=20 j=i,j?(i,j)?i:j:j print i,j
from which concept of 'c', the static member function of 'c++' has came?
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
difference between function & structure
What is spark map function?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4