What is #define?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between int main and void main in c?
When should I declare a function?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
What is sizeof return in c?
How can I manipulate strings of multibyte characters?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
How can you read a directory in a C program?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What is the purpose of Scanf Print, getchar, putchar, function?
What are the 4 data types?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }