Give the rules for variable declaration?
No Answer is Posted For this Question
Be the First to Post Answer
write a program for size of a data type without using sizeof() operator?
22 Answers HCL, IBM,
What are the different types of pointers?
Process by which one bit pattern in to another by bit wise operation is?
Describe how arrays can be passed to a user defined function
Binary tree traversing
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
how to impliment 2 or more stacks in a single dimensional array ?
What is the concatenation operator?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Explain what a Binary Search Tree is.
What is exit() function?
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????