How can you increase the size of a statically allocated array?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between %d and %*d in C
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
what is the difference between global variable & static variable declared out side all the function in the file.
write a program to display reverse of a number using for loop?
What is %g in c?
What's the difference between constant char *p and char * constant p?
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
is it possible to change the default calling convention in c ?
Does free set pointer to null?
Explain what is a program flowchart and explain how does it help in writing a program?
What is difference between static and global variable in c?
Explain what is the difference between a free-standing and a hosted environment?