How do you use a pointer to a function?
No Answer is Posted For this Question
Be the First to Post Answer
what is difference b/w extern & volatile variable??
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
write a program to generate 1st n fibonacci prime number
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
how is the examination pattern?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is a double c?
when user give a number it multiply with 9 without useing '+' and '*' oprator
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }