What are header files why are they important?
No Answer is Posted For this Question
Be the First to Post Answer
What are the benefits of c language?
What is meant by preprocessor in c?
Determine if a number is a power of 2 at O(1).
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
What are called c variables?
What is f'n in math?
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
Is it possible to run a c program without using main?If yes HOW??
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
Describe wild pointers in c?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }