What is double pointer?
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
What are file streams?
how to implement stack operation using singly linked list
how to find anagram without using string functions using only loops in c programming
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance
implement NAND gate logic in C code without using any bitwise operatior.
What is the use of volatile?
why we are using float in C
What is a good way to implement complex numbers in c?