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
What is c variable?
Write a C++ program without using any loop (if, for, while etc) to print numbers from 1 to 100 and 100 to 1;
18 Answers Accenture, Cisco, Egentec, HCL, Ideaz, Infosys, M-Systems, MYR, TCS,
What is the difference between mpi and openmp?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
How can a process change an environment variable in its caller?
explain about storage of union elements.
What is integer constants?
number of times a digit is present in a number
write a program to swap bits in a character and return the value prototype of function char fun (char a, charb flag c) where fun returns a char, char a is a the value char b is the bit to be changed and flag c is the bit value for eg: x=fun(45,7,0) since 45 is 0010 0101 and ow x should contain the value 65 (0110 0101)
1 Answers Bosch, College School Exams Tests,
what is the format specifier for printing a pointer value?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
Write a c pgm for leap year
11 Answers College School Exams Tests, IBM, TCS,