What is huge pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of function overloading in C?
What is the difference between a function and a method in c?
How can you invoke another program from within a C program?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What are the different types of storage classes in C?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
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.
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
Explain heap and queue.
What are the string functions? List some string functions available in c.
Write a program in c to input a 5 digit number and print it in words.
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }