#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

Is swift based on c?

0 Answers  


What is the need of structure in c?

0 Answers  


Explain data types & how many data types supported by c?

0 Answers  


what is the stackpointer

2 Answers  


write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.

2 Answers  






f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?

7 Answers   Hughes,


What is the data segment that is followed by c?

0 Answers  


What is omp_num_threads?

0 Answers  


Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0

6 Answers   Qualcomm,


totally how much header files r in c language

8 Answers   TCS,


What is structure padding and packing in c?

0 Answers  


How to swap 3 numbers without using 4th variable?

5 Answers  


Categories