what is associativity explain
what is the precidence for * and & , * and ++
how the folloing declaration work
1) *&p;
2) *p++;
No Answer is Posted For this Question
Be the First to Post Answer
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
Is c weakly typed?
What are different types of pointers?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(“%d\n”,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What is nested structure?
How can I set an array's size at run time?
what does ‘Bus Error’ mean?
p*=(++q)++*--p when p=q=1 while(q<=6)
Why is C language being considered a middle level language?
how to multiply two number taking input as a string (considering sum and carry )
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not