What is static identifier?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
What is the difference between malloc calloc and realloc in c?
What is the difference between functions abs() and fabs()?
write a program to find the frequency of a number
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n
How do you override a defined macro?
Why does everyone say not to use scanf? What should I use instead?
What is a null pointer in c?
What is typedf?
Wt are the Buses in C Language
What is adt in c programming?