what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
1 3979How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
2 4656Write 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 11451write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
3 5263FIND 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 71204) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 8308
What are the different categories of functions in c?
Explain what is the general form of a c program?
Explain the use of 'auto' keyword in c programming?
Write program to remove duplicate in an array?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
c language interview questions & answer
What is #error and use of it?
How can my program discover the complete pathname to the executable from which it was invoked?
Where are local variables stored in c?
What are the advantages of the functions?
Is python a c language?
What does it mean when the linker says that _end is undefined?
List the difference between a "copy constructor" and a "assignment operator"?
Can we declare a function inside a function in c?