What are enumerated types?
No Answer is Posted For this Question
Be the First to Post Answer
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
write a program to compare 2 numbers without using logical operators?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
What is the use of ?: Operator?
given post order,in order construct the corresponding binary tree
What is the use of sizeof?
how to write a bubble sort program without using temporary variable?
What are signals in C?
Explain how do you determine a file’s attributes?
explain what are actual arguments?