Why c is called object oriented language?


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

Post New Answer

More C Interview Questions

write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.

3 Answers  


sir, i cannot find the way how to write aprogram by using array on queue

1 Answers   IISIT,


struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));

2 Answers  


Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


What does %d do?

0 Answers  






how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com

3 Answers   Honeywell, Huawei,


how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");

9 Answers   TCS,


What does the file stdio.h contain?

0 Answers  


int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);

6 Answers   HCL, Octal, SW,


#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }

3 Answers   Zoho,


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

1 Answers  


explain what are pointers?

0 Answers  


Categories