Answer Posted / naresh
IN C++ we can where as in C it very less hope
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
How can I open a file so that other programs can update it at the same time?
Explain built-in function?
Is struct oop?
Explain what is the difference between a string and an array?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
Explain what math functions are available for integers? For floating point?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
Tell me can the size of an array be declared at runtime?
Write a program to identify if a given binary tree is balanced or not.
What are the different properties of variable number of arguments?
Which function in C can be used to append a string to another string?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Explain how can I open a file so that other programs can update it at the same time?
using for loop sum 2 number of any 4 digit number in c language
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }