Explain Basic concepts of C language?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

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)....................

8 Answers  


write a program to display the frequency of each element in a given array in c language

1 Answers  


Why c is called a middle level language?

0 Answers  


what is the difference between #include<> and #include”…”?

5 Answers  


What is main void in c?

1 Answers  


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.

0 Answers  


#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }

1 Answers  


printf("%d",(printf("Hello")); What it returns?

32 Answers   TCS,


What are the various types of control structures in programming?

0 Answers  


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

0 Answers   Wilco,


Is r written in c?

0 Answers  


Categories