What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to generate address labels using structures?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
write a “Hello World” program in “c” without using a semicolon?
What is fflush() function?
what is object oriental programing?
What does the c in ctime mean?
Write a program for finding factorial of a number.
Explain how do you determine a file’s attributes?
What is the difference between %d and %*d in C
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }