What is the benefit of using an enum rather than a #define constant?
No Answer is Posted For this Question
Be the First to Post Answer
What does the message "automatic aggregate intialization is an ansi feature" mean?
What is pointer to pointer in c?
What do you mean by Recursion Function?
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
Can you explain the four storage classes in C?
explain what is an endless loop?
What are volatile variables in c?
What are the various types of control structures in programming?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor