int a=20;
int b=30;
int c=40;
printf("%d%d%d");
what will be the output?
Answer Posted / neethu
%d%d%d
| Is This Answer Correct ? | 3 Yes | 10 No |
Post New Answer View All Answers
What is context in c?
How do we make a global variable accessible across files? Explain the extern keyword?
Explain how do you search data in a data file using random access method?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
Explain how do you determine the length of a string value that was stored in a variable?
hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Can a pointer be volatile in c?
What is the use of volatile?
What is the scope of local variable in c?
What are pointers really good for, anyway?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What do you mean by dynamic memory allocation in c?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm