What are pointers really good for, anyway?
No Answer is Posted For this Question
Be the First to Post Answer
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
How to write c functions that modify head pointer of a linked list?
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
Explain do array subscripts always start with zero?
write a program for the normal snake games find in most of the mobiles.
how to find out the union of two character arrays?
Write a program to print the prime numbers from 1 to 100?
what is a NULL pointer?
Why does not use getgh(); and <conio.h> in c language.
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is a newline escape sequence?
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value