#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

#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


How we can set and clear bit in a byte using macro function?

2 Answers   L&T, Samsung,


write a program in c to read array check element is present or not?

1 Answers  


What is keyword in c?

0 Answers  


What will be the output of x++ + ++x?

20 Answers   MBT, Religare,






while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.

1 Answers   TCS,


Why is c not oop?

0 Answers  


How can I use a preprocessorif expression to ?

0 Answers  


How can I rethow can I return a sequence of random numbers which dont repeat at all?

0 Answers  


Why double pointer is used in c?

0 Answers  


What are the functions to open and close the file in c language?

0 Answers  


What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


Categories