What are dangling pointers?
Answer / nashiinformaticssolutions
Pointers pointing to memory that has been deallocated.
| Is This Answer Correct ? | 0 Yes | 0 No |
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
Distinguish between actual and formal arguments.
what is array?
What is the difference between union and structure in c?
can we execute the program with the object file
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147
Explain what is the difference between far and near ?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
what is the use of c program?
4 Answers Synergy, Web Synergies,
What are the key features in c programming language?