WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
No Answer is Posted For this Question
Be the First to Post Answer
What are high level languages like C and FORTRAN also known as?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What are pointers in C? Give an example where to illustrate their significance.
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
Three major criteria of scheduling.
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
What is static volatile in c?
what is difference b/w extern & volatile variable??
What is the difference between arrays and pointers?
Can you please explain the difference between exit() and _exit() function?
What is the use of clrscr?