How do I create a directory? How do I remove a directory (and its contents)?
No Answer is Posted For this Question
Be the First to Post Answer
what is the hardware model of CFG( context free grammar)
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
How can I convert a number to a string?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
How can I find leaf node with smallest level in a binary tree?
How can we open a file in Binary mode and Text mode?what is the difference?
Do pointers need to be initialized?
What is #define used for in c?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
How to develop software using "c" programming?
if array a conatins 'n' elements and array b conatins 'n-1' elements.array b has all element which are present in array a but one element is missing in array b. find that element.
18 Answers Parexel, Ram Infotech, Zycus Infotech,
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?