What does 1f stand for?
No Answer is Posted For this Question
Be the First to Post Answer
What is the most efficient way to count the number of bits which are set in a value?
write c program without semicolon
11 Answers MindTech, TCS, Wipro,
How can a program be made to print the line number where an error occurs?
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
Are there namespaces in c?
in malloc and calloc which one is fast and why?
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
Function calling procedures? and their differences? Why should one go for Call by Reference?
write a program without using main function?
What is array of structure in c?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
what is the difference between embedded c and turbo c ?