What are structure members?
No Answer is Posted For this Question
Be the First to Post Answer
what is c language?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
Explain the difference between the local variable and global variable in c?
Why is sizeof () an operator and not a function?
What is a segmentation fault?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
Explain the properties of union.
coding for Fibonacci.?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
Can you define which header file to include at compile time?
write a program in c to read array check element is present or not?