Answer Posted / usha
because i have a strong technical skill in C,C++, core JAVA
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Is c a great language, or what?
What is the use of in c?
Explain why C language is procedural?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
What does typedef struct mean?
Where are the auto variables stored?
How can I swap two values without using a temporary?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
What are local variables c?
Explain threaded binary trees?
How the c program is executed?
What is pre-emptive data structure and explain it with example?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is the newline escape sequence?