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
What are pragmas and what are they good for?
What is structure packing ?
What is restrict keyword in c?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
What are the application of c?
What is the difference between exit() and _exit()?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What is the use of a semicolon (;) at the end of every program statement?
What is structure packing in c?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What is the difference between void main() and void main (void) give example programme?