#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
Difference between Function to pointer and pointer to function
What is strcmp in c?
Write a program to find the biggest number of three numbers in c?
Explain how do you list files in a directory?
What do you mean by invalid pointer arithmetic?
Why c is called object oriented language?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What is the condition that is applied with ?: Operator?
What is the meaning of ?
Why is c not oop?
How can a process change an environment variable in its caller?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What are the types of type specifiers?
Is register a keyword in c?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?