what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
1 3985How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
2 4658Write 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 11460write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
3 5269FIND 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 71314) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 8312
What is 1f in c?
What is mean by data types in c?
Explain about the functions strcat() and strcmp()?
What is the best way of making my program efficient?
Explain what is wrong with this program statement?
Why doesnt this code work?
Can you subtract pointers from each other? Why would you?
What is const volatile variable in c?
What do you mean by scope of a variable in c?
C program to find all possible outcomes of a dice?
In C language what is a 'dangling pointer'?
Explain main function in c?
Explain what is the difference between a free-standing and a hosted environment?
code for replace tabs with equivalent number of blanks
How can I get back to the interactive keyboard if stdin is redirected?