What is modeling?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Explain can you assign a different address to an array tag?
Write 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.
application attempts to perform an operation?
What is int main () in c?
Why array is used in c?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
What is difference between array and pointer in c?
Is there anything like an ifdef for typedefs?
What is time complexity c?
what is a NULL pointer?