What is pointer & why it is used?
No Answer is Posted For this Question
Be the First to Post Answer
What is a memory leak? How to avoid it?
How can I set an array's size at run time?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
Can the curly brackets { } be used to enclose a single line of code?
what are the uses of structure?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is the difference between a structure and a union?
Why does not c have an exponentiation operator?
Differentiate between full, complete & perfect binary trees.
why do we use pointer instead directly acessing the data?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
Program to write some contents into a file using file operations with proper error messages.