What is the difference between c &c++?
No Answer is Posted For this Question
Be the First to Post Answer
what is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
what is answer for perfect number????????????????
In c language can we compile a program without main() function?
please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is the memory allocated by the following definition ? int (*x)();
How do you search data in a data file using random access method?
Why are all header files not declared in every c program?
Table of Sudoku n*n
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.