number of times a digit is present in a number
No Answer is Posted For this Question
Be the First to Post Answer
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
What is wild pointer in c?
What is putchar() function?
what are non standard function in c
write a program for egyptian fractions in c?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
8 Answers Carphone Warehouse, IBM, SAS,
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
What is double pointer?
Explain the use of fflush() function?
Explain continue keyword in c
Program to find the sum of digits of a given number until the sum becomes a single digit