what is macro in c?
Difference between single linked list & double linked list
what is fifo & lifo?
what is stack & queue?
Answers were Sorted based on User's Feedback
Answer / nilam
Macros are preprocessor directives that are defined using #define directive. Macros consist of two parts Macro_Name, & Macro_Substitution_Text.
Before the source code gets complied, the preprocessor will check for the presence of macros. & wherever it found that macro simply replaces that macros with substitution text.
Macros are not Type Safe.
| Is This Answer Correct ? | 21 Yes | 0 No |
Answer / revathi
stack is a last in, first out (LIFO).It is characterized by only three fundamental operations: push, pop and stack top.
The queue is a First-In-First-Out (FIFO) data structure. In a FIFO data structure, the first element added to the queue will be the first one to be removed.
| Is This Answer Correct ? | 7 Yes | 1 No |
full c programming error question based problem
Find the error (2.5*2=5) (a) X=y=z=0.5,2.0-5.75 (b) s=15;
What is probability to guarantee that the task a programmer is going to create will be created and be able to run on a particular system (RTOS/GPOS).
what is run time error?
What is the code for following o/p * * * * * * * * * * * * * * * *
How to develop a program using C language to convert 8-bit binary values to decimals. TQ
Given that two int variables, total and amount, have been declared, write a loop that reads integers into amount and adds all the non-negative values into total. The loop terminates when a value less than 0 is read into amount. Don't forget to initialize total to 0. Instructor's notes: This problem requires either a while or a do-while loop.
Using string functions write a program that will accept the name of the capital as input value and will display the corresponding country. ------------------------ Capitals Countries ------------------------ Capitals Countries Ottawa Canada Moscow Russia Rome Italy I can't not get it to run properly
Why are memory errors hard to debug?
errors are known as?
3 Answers EX, State Bank Of India SBI,
what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }
How to create a program that lists countries capitals when country is entered? (Terribly sorry, I'm a complete novist to coding with C, am looking for inspiration and general tips on how to code and create this program.)