How can I find the modification date of a file?
No Answer is Posted For this Question
Be the First to Post Answer
Write the control statements in C language
How are structure passing and returning implemented?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
every function has return the value?
Eight queens puzzle
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
What is an identifier?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?