What is nested structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
How do you determine whether to use a stream function or a low-level function?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
How can I access an I o board directly?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
c pgm count no of lines , blanks, tabs in a para(File concept)
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
why do some people write if(0 == x) instead of if(x == 0)?
A program to allow an input operand and operator from the operator and read on the display and output operand.
read an array and search an element
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
Why doesnt that code work?
What is the correct declaration of main?