what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
1 3927How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
2 4557Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
2 11346write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
3 5129FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
4 69744) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 8172
How can I list all of the predefined identifiers?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Is null always equal to 0(zero)?
What are the different types of control structures in programming?
Explain how can you restore a redirected standard stream?
What are static variables in c?
What is the best way to store flag values in a program?
What does typedef struct mean?
What is the meaning of ?
What is c language used for?
What is assert and when would I use it?
What is a const pointer?
What are volatile variables in c?
Can you add pointers together? Why would you?
What is meant by initialization and how we initialize a variable?