Wipro Company Programming Database

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

Read Solution (Total 11)

Wipro Other Question

What is the output of the following program:
#include
void main()
{
printf("%d %o %x",65,65,65);
}
What is difference between object oriented and procedure oriented programming?