What is sizeof array?
No Answer is Posted For this Question
Be the First to Post Answer
how can we use static and extern?and where can we use this?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
Explain in detail how strset (string handling function works )pls explain it with an example.
What are the application of void data type in c?
How can I pad a string to a known length?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
What are the characteristics of arrays in c?
write a programming in c language, 1 3 5 7 9 11
How many types of errors are there in c language? Explain
how to sort two array of characters and make a new array of characters.
What is graph in c?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed