What is the purpose of scanf() and printf() functions?
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 I prevent another program from modifying part of a file that I am modifying?
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is sizeof c?
what are the languages used in c#?
how we can make 3d venturing graphics on outer interface
Do you know the use of fflush() function?
list the no of files created when c source file is compiled
What do the functions atoi(), itoa() and gcvt() do?
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 use of bit field?
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?