#include<stdio.h>
#include<conio.h>
void main()
{
int m=0111,n=20;
printf("%d%d\n",m,n);
getch();
}
Answer Posted / suraj
7320
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Why static is used in c?
What is pre-emptive data structure and explain it with example?
What is difference between far and near pointers?
What is the difference between a free-standing and a hosted environment?
Explain what is the general form of a c program?
How can you find the exact size of a data type in c?
How can a number be converted to a string?
Why is c called c?
Can 'this' pointer by used in the constructor?
What is the benefit of using an enum rather than a #define constant?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What is nested structure?
How many levels of indirection in pointers can you have in a single declaration?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is && in c programming?