What are file streams?
No Answer is Posted For this Question
Be the First to Post Answer
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
Why do we need functions in c?
With the help of using classes, write a program to add two numbers.
How can I find the modification date and time of a file?
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is the method to save data in stack data structure type?
What is Bitwise Operator and how it works?
Find greatest number out of 10 number without using loop.