What is string function c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of volatile?
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
How does placing some code lines between the comment symbol help in debugging the code?
What does == mean in texting?
Please list all the unary and binary operators in C.
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
write a program to swap bits in a character and return the value prototype of function char fun (char a, charb flag c) where fun returns a char, char a is a the value char b is the bit to be changed and flag c is the bit value for eg: x=fun(45,7,0) since 45 is 0010 0101 and ow x should contain the value 65 (0110 0101)
1 Answers Bosch, College School Exams Tests,
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
write a program to remove occurrences the word from entered text?