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
Program to find the value of e raised to power x using while loop
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Taking an example,differentiate b/w loader and linker ?
what is the diff b/w static and non static variables in C. Give some examples plz.
Given an unsigned integer, find if the number is power of 2?
what are enumerations in C
What does sizeof int return?
write a program to find out number of on bits in a number?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
Can we assign integer value to char in c?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
Where in memory are my variables stored?