what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
1 3935How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
2 4571Write 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 11357write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
3 5138FIND 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 69834) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 8189
What is class and object in c?
What is indirection?
Should I learn data structures in c or python?
Write a program to swap two numbers without using third variable in c?
What the different types of arrays in c?
What does != Mean in c?
Explain the ternary tree?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What is the explanation for the dangling pointer in c?
What is #include conio h?
Explain how can I remove the trailing spaces from a string?
What is zero based addressing?
Write a program to print “hello world” without using semicolon?
Is c dynamically typed?
What is the use of sizeof?