What is the size of enum in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to swap 2 numbers within a single statement?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What does & mean in scanf?
What is extern c used for?
Give me the code of in-order recursive and non-recursive.
Why is struct padding needed?
write a program to print %d ?
What is void pointers in c?
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
What is the size of array float a(10)?