What are dangling pointers in c?
No Answer is Posted For this Question
Be the First to Post Answer
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
How macro execution is faster than function ?
What are the types of i/o functions?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
who did come first hen or agg
Is there a way to jump out of a function or functions?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
Do you know pointer in c?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.