What is difference between structure and union in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What is this pointer in c plus plus?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
List the difference between a While & Do While loops?
What do header files do?
What are data breakpoints?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?
User define function contain thier own address or not.
explain what are actual arguments?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)