What is "Hungarian Notation"?
No Answer is Posted For this Question
Be the First to Post Answer
What are linked lists in c?
Explain how can I open a file so that other programs can update it at the same time?
Explain the priority queues?
Why pointers are used?
How can I increase the allowable number of simultaneously open files?
Write a code of a general series where the next element is the sum of last k terms.
Explain the term printf() and scanf() used in c language?
What does %p mean?
Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0
What are the disadvantages of c language?
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
What are the data types present in c?