What is the best way to comment out a section of code that contains comments?
No Answer is Posted For this Question
Be the First to Post Answer
# 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
Why is extern used in c?
What is const keyword in c?
what is the diference between pointer to the function and function to the pointer?
What do you mean by dynamic memory allocation in c?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
What is a rvalue?
what is the difference between structure and union?
Explain null pointer.
What are high level languages like C and FORTRAN also known as?
How does struct work in c?
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..