Wipro Company Programming Technical

What is difference between object oriented and procedure oriented programming?

Read Solution (Total 6)

Wipro Other Question

One c program is written in 2 files
/*Program1.c*/
int x=10

/*Program2.c*/
#include "Program1.c"
int main()
{
extern int x;
printf("x : %d",x);

}
In Program2.c statement extern int x; is not needed.
A. True
B. False
What is the difference between char *a and char a[]?