What is the code for 3 questions and answer check in
VisualBasic.Net?
No Answer is Posted For this Question
Be the First to Post Answer
fn f(x) { if(x<=0) return; else f(x-1)+x; }
What are different types of variables in c?
what is the defrenece between structure and union
What is hashing in c?
What is pointer and structure in c?
What is the difference between a string and an array?
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
What's the best way of making my program efficient?
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
What does printf does?
Compare array data type to pointer data type