What are pointers in C? Give an example where to illustrate their significance.
No Answer is Posted For this Question
Be the First to Post Answer
Write a pro-gramme to determine whether the number is even or odd?
why should i select you?
Tell me about low level programming languages.
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
a 'c' program to tell that the set of three coordinates lie on a same line
Which is better oop or procedural?
when to use : in c program?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
how many header file is in C language ?
44 Answers College School Exams Tests, CTS, IBM, IMS, Infosys, ME, Sign Solutions, Wipro, XVT,
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
which operator is known as dummy operator in c?
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