Do you know what is a programing language ?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between the local variable and global variable in c?
What is memory leak in c?
how the compiler treats any volatile variable?Explain with example.
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
What is a node in c?
number of times a digit is present in a number
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
What is an auto keyword in c?
Which programming language is best for getting job 2020?
Why is it that not all header files are declared in every C program?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
What is period operator in c?