while initialization of array why we use a[][2]
why not a[2][]...?
No Answer is Posted For this Question
Be the First to Post Answer
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
what is answer for perfect number????????????????
What is the size of enum in bytes?
What is the difference between Printf(..) and sprint(...) ?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
What is string length in c?
Write a program on swapping (100, 50)
What are the 5 types of inheritance in c ++?
Differentiate between a for loop and a while loop? What are it uses?
What is diffrance between declaration and defination of a variable or function
What is restrict keyword in c?
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }