What is function definition in c?
how many key words availabel in c a) 28 b) 31 c) 32
Is array a primitive data type in c?
Is an array parameter is always "by reference" ?
What is sizeof array in c?
Rapunzel walks into the forest of forgetfullness. She meets a Lion who lies on Monday Tuesdays and Wednesdays and meets a rabbit who lies on Thurs fridays and saturdays . On that day both say that "I lied yesterday". What day is it .
Are the variables argc and argv are always local to main?
What is console in c language?
Explain the properties of union. What is the size of a union variable
#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?
using for loop sum 2 number of any 4 digit number in c language
what is pointer ? what is the use of pointer?
int *a[5] refers to