Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
No Answer is Posted For this Question
Be the First to Post Answer
Why c is called free form language?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
What is 2c dna?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
What is the relation between # and include<stdio.h>
What is default value of global variable in c?
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
What happens if you free a pointer twice?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?