Answer Posted / pravin
bugs.
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Explain what is the difference between a string and an array?
Can the size of an array be declared at runtime?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What's the right way to use errno?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Can a file other than a .h file be included with #include?
Can you add pointers together? Why would you?
what are the advantages of a macro over a function?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What are the general description for loop statement and available loop types in c?
Why do we need a structure?
What are shell structures used for?
How can I get the current date or time of day in a c program?
Why is sprintf unsafe?