Answer Posted / amit
A set of data values and associated operations that are
precisely specified independent of any particular
implementation.
Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
How many keywords (reserve words) are in c?
What is the use of a semicolon (;) at the end of every program statement?
What is huge pointer in c?
What is enumerated data type in c?
How to throw some light on the b tree?
What is difference between function overloading and operator overloading?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
Is there any possibility to create customized header file with c programming language?
Differentiate between static and dynamic modeling.
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
C language questions for civil engineering
Write a program in c to replace any vowel in a string with z?
Define and explain about ! Operator?
What is the benefit of using #define to declare a constant?