What is data type long in c?


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

Post New Answer

More C Interview Questions

Explain what is the difference between a string and an array?

0 Answers  


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?

7 Answers   Geometric Software,


what is self refrential structure

3 Answers   HCL,


Who developed c language?

0 Answers  






size maximum allocated by calloc()

3 Answers   DELL,


What type of function is main ()?

0 Answers  


how to print 2-D array using a single for loop?

2 Answers   Mind Tree, TCS, Value Labs,


how to display 2-D array elements in spiral

2 Answers  


Hai what is the different types of versions and their differences

0 Answers  


what are the stages of compilation

1 Answers   Bosch,


Why is malloc used?

1 Answers  


Categories