Explain enumerated types in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Are bit fields portable?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
What is masking?
What is the use of pragma in embedded c?
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
Is there any data type in c with variable size?
How many types of operators are there in c?
What does the c in ctime mean?
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
What is a pointer value and address in c?
What are global variables?
code for copying two strings with out strcpy() function.