What is hungarian notation? Is it worthwhile?
No Answer is Posted For this Question
Be the First to Post Answer
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
Explain how can you tell whether two strings are the same?
How a string is stored in c?
How can you avoid including a header more than once?
Explain the advantages and disadvantages of macros.
Explain the use of fflush() function?
What are the various types of control structures in programming?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
Explain what is the best way to comment out a section of code that contains comments?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
What is logical error?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);