What is the Difference between Class and Struct?
Answer Posted / revathy
no functions in structures
member functions are available in class
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
How can you increase the size of a statically allocated array?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What are types of preprocessor in c?
What is getch() function?
What is typedef example?
Explain how can I convert a number to a string?
Can we assign string to char pointer?
Explain what are header files and explain what are its uses in c programming?
What is #include stdio h?
What is gets() function?
What is the data segment that is followed by c?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What is the -> in c?
How will you find a duplicate number in a array without negating the nos ?