Explain #pragma in C.
Answer / nashiinformaticssolutions
A compiler-specific directive used for special purposes like disabling warnings.
| Is This Answer Correct ? | 0 Yes | 0 No |
Difference between Shallow copy and Deep copy?
Subtract Two Number Without Using Subtraction Operator
What are the features of the c language?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
If null and 0 are equivalent as null pointer constants, which should I use?
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.
how to find greatet of 10 numbers without using array?
Is c call by value?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
how to swap 4 number without using temporary number?
When should the volatile modifier be used?