Are negative numbers true in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the keywords in c?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
Explain can you assign a different address to an array tag?
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
c program to subtract between two numbers without using '-' sign and subtract function.
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Tell me what are bitwise shift operators?
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
How can a program be made to print the line number where an error occurs?
When should you not use a type cast?
why array index always starts from zero??