What is the difference between new and malloc functions?
how to find that no is int or float?
What are the back slash character constants or escape sequence charactersavailable in c?
What is the difference between i++ and i+1 ?(in terms of memory)
What does %p mean?
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
How can you check to see whether a symbol is defined?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
What is operator precedence?
What are the uses of a pointer?
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
how many argument we can pas in in a function
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 []);