What is a pointer in c plus plus?
No Answer is Posted For this Question
Be the First to Post Answer
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
what is the difference between definition and declaration? give me some examples.
How can I find out if there are characters available for reading?
what is c?
What is sizeof return in c?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
Write a programe print the sum of series 0,1,2,.....10
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is malloc calloc and realloc in c?
Explain about C function prototype?