Explain what is the benefit of using enum to declare a constant?
No Answer is Posted For this Question
Be the First to Post Answer
What is typedef example?
suppose there are five integers write a program to find larger among them without using if- else
What is malloc and calloc?
How to declare a variable?
What is function pointer and where we will use it
What are the advantages and disadvantages of c language?
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
A marketing company wishes to construct a decision table to decide how to treat clients according to three characteristics: Gender, City Dweller, and age group: A (under 30), B (between 30 and 60), C (over 60). The company has four products (W, X, Y and Z) to test market. Product W will appeal to female city dwellers. Product X will appeal to young females. Product Y will appeal to Male middle aged shoppers who do not live in cities. Product Z will appeal to all but older females.
What is the difference between malloc() and realloc()?
how to write a c program to print list of fruits in alpabetical order?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {