what is a void pointer?
Answers were Sorted based on User's Feedback
Answer / karthik
void *p;
its void pointer.
it can point to any pointer like int*,char*,etc....
that is use of void*.
| Is This Answer Correct ? | 3 Yes | 2 No |
Explain what is the difference between a string and an array?
whats the use of header file in c?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
Explain what is the use of a semicolon (;) at the end of every program statement?
how to execute with out main in cprogram
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
wtite a program that will multiply two integers in recursion function
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
List some basic data types in c?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
Why C language is a procedural language?