Answer Posted / abhradeep chatterjee
yes. it is possible.
| Is This Answer Correct ? | 19 Yes | 3 No |
Post New Answer View All Answers
Do you know null pointer?
What are preprocessor directives in c?
What does *p++ do?
What is pass by value in c?
a c code by using memory allocation for add ,multiply of sprase matrixes
What is the use of a ‘ ’ character?
can any one tel me wt is the question pattern for NIC exam
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Explain how do you print only part of a string?
What is double pointer in c?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What standard functions are available to manipulate strings?
explain what are actual arguments?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;