Write a program for Overriding.
No Answer is Posted For this Question
Be the First to Post Answer
How many bytes are occupied by near, far and huge pointers (dos)?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
How do I convert a string to all upper or lower case?
I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?
what is linkage error when it occurs in c program
Explain how do you use a pointer to a function?
List the different types of c tokens?
#define d 10+10 main() { printf("%d",d*d); }
how to find the size of the data type like int,float without using the sizeof operator?
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?