Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
No Answer is Posted For this Question
Be the First to Post Answer
code for copying two strings with out strcpy() function.
Explain what is dynamic data structure?
What are different types of variables in c?
What are loops c?
What is the use of the sizeof operator?
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
Can we compile a program without main() function?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
what r callback function?
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }