What is pointer to pointer in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
wats the diference btwen constant pointer and pointer to a constant.pls give examples.
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above
What is pointer and structure in c?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
What is indirection in c?
Can you add pointers together? Why would you?
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
What is the value of a[3] if integer a[] = {5,4,3,2,1}?