What is storage class?
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.
How can variables be characterized?
What is hash table in c?
what is function pointer?
what are far pointers?
how to find out the inorder successor of a node in a tree??
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
What is I ++ in c programming?
how can u print a message without using any library function in c
why java is called as a purely oops language.
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.