What is the advantage of c?
No Answer is Posted For this Question
Be the First to Post Answer
What is s in c?
What is the difference between int main and void main in c?
What do you know about the use of bit field?
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
What is the difference between a free-standing and a hosted environment?
What does %f mean c?
Do variables need to be initialized?
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.
what is a non volatile key word in c language?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
Write a program to swap two numbers without using a temporary variable?
Explain what does the format %10.2 mean when included in a printf statement?