What functions are in conio h?
No Answer is Posted For this Question
Be the First to Post Answer
How can I read and write comma-delimited text?
Define VARIABLE?
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
What do you mean by command line argument?
What are external variables in c?
int x=5; printf("%d%d%d",x,x<<2,x>>2);
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
Explain what is the difference between the expression '++a' and 'a++'?
write a programming in c to find the sum of all elements in an array through function.
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
How to avoid buffer overflow?