in programming languages a statement or part of a statement that specifies several different execution sequences
a) constructs
b) distructs
c) executes
d) none
No Answer is Posted For this Question
Be the First to Post Answer
Here is a neat trick for checking whether two strings are equal
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
# 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
When do we get logical errors?
What is strcpy() function?
Why void main is used in c?
Explain the concept of "dangling pointers" in C.
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
Which type of language is c?
What is 1d array in c?
how to create c progarm without void main()?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits