difference between native and cross compilers
Can a pointer be null?
Can we assign integer value to char in c?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Derive the complexity expression for AVL tree?
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
What do mean by network ?
write a program for the normal snake games find in most of the mobiles.
cavium networks written test pattern ..
wap in c to accept a number display the total count of digit
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?