Why is c called c not d or e?


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

Post New Answer

More C Interview Questions

What is null pointer in c?

0 Answers  


How are pointers declared in c?

0 Answers  


what is op? for(c=0;c=1000;c++) printf("%c",c);

21 Answers   Trigent,


int far *near * p; means

0 Answers   Honeywell,


Write a program that his output 1 12 123

0 Answers  






What do you mean by invalid pointer arithmetic?

0 Answers  


Where register variables are stored in c?

0 Answers  


What is the significance of an algorithm to C programming?

0 Answers  


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?

0 Answers  


Explain the term printf() and scanf() used in c language?

0 Answers  


What is a null string in c?

0 Answers  


Categories