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
Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered
What is the difference between fread buffer() and fwrite buffer()?
How do you declare a variable that will hold string values?
Why we use break in c?
Explain how can you check to see whether a symbol is defined?
What is switch in c?
how would a 4*3 array A[4][3] stored in Row Major Order?
A C E G H +B D F A I ------------ E F G H D
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Hai what is the different types of versions and their differences
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Are pointers really faster than arrays?