What is pointer to pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Can a binary search tree be used as an index? If yes, how? Explain
wite a programme in c to linear search a data using flag and without using flags?
Explain what is a stream?
How does free() know how many bytes to free?
how to find the binary of a number?
Write a program to implement queue.
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
How many main () function we can have in a project?
What is the difference between printf and scanf in c?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?