hi... can anyone help me to make a two-dimensinal arrays in
finding the sum of two elements plzzz. thnx a lot...
No Answer is Posted For this Question
Be the First to Post Answer
What is the right type to use for boolean values in c? Is there a standard type?
What is an array? What the different types of arrays in c?
How many levels deep can include files be nested?
What is a pointer value and address in c?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
What are the benefits of organizational structure?
Describe wild pointers in c?
Explain how do you list a file’s date and time?
Can we increase size of array in c?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
define c