Explain Basic concepts of C language?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
write a program to display the frequency of each element in a given array in c language
Why c is called a middle level language?
what is the difference between #include<> and #include”…”?
What is main void in c?
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
printf("%d",(printf("Hello")); What it returns?
What are the various types of control structures in programming?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Is r written in c?