#include<stdio.h>
#include<conio.h>
void main()
{
int m=0111,n=20;
printf("%d%d\n",m,n);
getch();
}



#include<stdio.h> #include<conio.h> void main() { int m=0..

Answer / suraj

7320

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More C Interview Questions

Differentiate between declaring a variable and defining a variable?

0 Answers  


main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }

3 Answers   CSC,


what is the structure pointer?

0 Answers   Accenture, HCL,


a c code by using memory allocation for add ,multiply of sprase matrixes

0 Answers  


Tell us the use of fflush() function in c language?

0 Answers  






Explain what are binary trees?

0 Answers  


What is the -> in c?

0 Answers  


Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered

1 Answers  


write a program to compare 2 numbers without using logical operators?

5 Answers   IBM,


Please list all the unary and binary operators in C.

3 Answers  


what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string

3 Answers  


How can I manipulate strings of multibyte characters?

0 Answers  


Categories