Why is C language being considered a middle level language?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

0 Answers   Wilco,


What are the 3 types of structures?

0 Answers  


why we wont use '&' sing in aceesing the string using scanf

0 Answers   HCL,


int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?

3 Answers  


What is the difference between a string and an array?

0 Answers  






void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..

1 Answers  


x=2,y=6,z=6 x=y==z; printf(%d",x)

13 Answers   Bharat, Cisco, HCL, TCS,


What is malloc and calloc?

0 Answers  


Write a program for deleting duplicate elements in an array

3 Answers   Subex,


What is a class?

3 Answers  


What is structure padding ?

3 Answers   HP,


WHAT IS ABSTRACT DATA TYPE

4 Answers   Wipro,


Categories