Explain what are the standard predefined macros?
No Answer is Posted For this Question
Be the First to Post Answer
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.
What is static volatile in c?
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
When should you not use a type cast?
What is a pointer?
Write a program to know whether the input number is an armstrong number.
What is advantage of pointer in c?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
What is the scope of static variable in c?
How variables are declared in c?
What is getch() function?
A program to allow an input operand and operator from the operator and read on the display and output operand.