#include<stdio.h>
#include<conio.h>
void main()
{
int m=0111,n=20;
printf("%d%d\n",m,n);
getch();
}
Write a function in c to find the area of a triangle whose length of three sides is given.
if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?
4 Answers Amazon, Apple, Bata, Google, NASA,
what is calloc and malloc?
What is the most efficient way to store flag values?
Can 'this' pointer by used in the constructor?
What is the function of multilevel pointer in c?
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
Write a program in c to input a 5 digit number and print it in words.
how to make a scientific calculater ?
How variables are declared in c?
What is #error and use of it?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175