What is data type long in c?
Explain what is the difference between a string and an array?
#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?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
what is self refrential structure
Who developed c language?
size maximum allocated by calloc()
What type of function is main ()?
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
Hai what is the different types of versions and their differences
what are the stages of compilation
Why is malloc used?