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 |
What is difference between arrays and pointers?
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Explain what is the benefit of using enum to declare a constant?
Can stdout be forced to print somewhere other than the screen?
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.
What are volatile variables?
What is string length in c?
What does char * * argv mean in c?