What is pointer & why it is used?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?

4 Answers   L&T,


#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }

9 Answers   TCS,


what is meant by the "equivalence of pointers and arrays" in C?

3 Answers   Satyam,


c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above

0 Answers  


Write a C program to find the smallest of three integers, without using any of the comparision operators.

7 Answers   TCS,






What is advantage of pointer in c?

0 Answers  


How can you increase the size of a dynamically allocated array?

0 Answers   TISL,


What does sizeof function do?

0 Answers  


plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .

3 Answers  


In C programming, what command or code can be used to determine if a number of odd or even?

0 Answers  


Which header file is essential for using strcmp function?

0 Answers  


How can I sort more data than will fit in memory?

0 Answers  


Categories