the expression a=30*1000+2768; evalutes to
a) 32768
b) -32768
c) 113040
d) 0
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
How can I sort more data than will fit in memory?
Why cann't whole array can be passed to function as value.
How can you tell whether two strings are the same?
What is the general form of function in c?
Explain modulus operator.
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is the difference between int main and void main?
In a switch statement, explain what will happen if a break statement is omitted?