What are identifiers and keywords in c?
No Answer is Posted For this Question
Be the First to Post Answer
explain memory layout of a C program
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
Explain how can you tell whether a program was compiled using c versus c++?
What is meant by operator precedence?
can any one provide me the notes of data structure for ignou cs-62 paper
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
can you change name of main()?how?
I have seen function declarations that look like this
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
What are the properties of union in c?
Is c functional or procedural?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer