How can I list all of the predefined identifiers?


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

Post New Answer

More C Interview Questions

how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.

3 Answers  


How many bytes are occupied by near, far and huge pointers (dos)?

0 Answers  


What are local static variables? How can you use them?

0 Answers  


code for quick sort?

0 Answers  


what are the advantage and disadvantage of recursion

5 Answers  






What is difference between array and structure in c?

0 Answers  


hi how to convert program from notepad to turboc editor can u please help me

3 Answers  


what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above

3 Answers   Accenture, Infosys, Wipro,


regarding pointers concept

0 Answers  


What is difference between union and structure in c?

0 Answers  


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+

1 Answers   Reliance,


Categories