Explain Function Pointer?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is Conio.h ?

2 Answers   TCS,


#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,


write a programming in c language, 1 3 5 7 9 11

2 Answers   NIIT,


What is file in c language?

0 Answers  


What is a nested loop?

0 Answers  






What will be the outcome of the following conditional statement if the value of variable s is 10?

0 Answers  


Why do we need functions in c?

0 Answers  


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100

1 Answers  


Who developed c language and when?

0 Answers  


What are local and global variables?

3 Answers  


How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST

6 Answers   Adobe, Huawei,


A program to allow an input operand and operator from the operator and read on the display and output operand.

0 Answers  


Categories