Wipro Company Programming Database

What is the output of the following program:
#include
void main()
{
printf("%d %o %x",65,65,65);
}

Read Solution (Total 10)

Wipro Other Question

A shopkeeper gives a discount of 20% on the sale. By what percent he had to increase the S.P of the item so that after giving discount he got the price of the its C.P. 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