Explain how do you sort filenames in a directory?
No Answer is Posted For this Question
Be the First to Post Answer
program to find the magic square
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
write an algorithm and a program to count the number of elements in a circularly singly linked list
What is an lvalue?
Explain Function Pointer?
Difference between goto, long jmp() and setjmp()?
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
program to locate string with in a string with using strstr function
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }