What is the most efficient way to store flag values?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words
5 Answers Captronic, DELL, Google, IBM, Mithi, RCC, Wipro,
What is the main difference between calloc () and malloc ()?
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
What's the difference between constant char *p and char * constant p?
Explain indirection?
write a progam to display the factors of a given number and disply how many prime numbers are there?
main() { int a[10]; printf("%d",*a+1-*a+3); }
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
What is the Difference between Class and Struct?
What are the types of pointers?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.