What are the advantages of using new operator as compared to the function malloc ()?
No Answer is Posted For this Question
Be the First to Post Answer
What are volatile variables in c?
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
write a program to display the array elements in reverse order in c language
Describe wild pointers in c?
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
How to define structures? ·
What is the difference between array and linked list in c?
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
write a programme that inputs a number by user and gives its multiplication table.
question-how to run a c programme.