What are the different types of C instructions?
No Answer is Posted For this Question
Be the First to Post Answer
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
what are the advantages & disadvantages of unions?
What is the importance of c in your views?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
Write a program to identify if a given binary tree is balanced or not.
How does normalization of huge pointer works?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
write a addition of two no. program with out using printf,scanf,puts .
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is nested 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
Explain what is the concatenation operator?