What does c in a circle mean?
No Answer is Posted For this Question
Be the First to Post Answer
What are the keywords in c?
What is Conio.h ?
Why is c so powerful?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
write a programme that inputs a number by user and gives its multiplication table.
Why should I use standard library functions instead of writing my own?
What are data breakpoints?
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
What is keyword with example?
what is data structure
write a program to swap two numbers without using temporary variable?
Where does the name "C" come from, anyway?