Why c is a procedural language?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what are the standard predefined macros?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
What is the value of uninitialized variable in c?
Explain the term printf() and scanf() used in c language?
write an algorithm and c program to add two 2x2 matrics
diff. between *p and **p
What is the difference between array and linked list in c?
What does == mean in texting?
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
There seem to be a few missing operators ..
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }