a character variable can at a time store
a) 1 character
b) 8 characters
c) 254 characters
d) none of the above
Answers were Sorted based on User's Feedback
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
without using arithmatic operator convert an intger variable x into x+1
What is the difference between fread and fwrite function?
How would you sort a linked list?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Explain #pragma statements.
hi, which software companys will take,if d candidate's % is jst 55%?
How does C++ help with the tradeoff of safety vs. usability?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
What's the best way of making my program efficient?
What does nil mean in c?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }