What are qualifiers in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Write the test cases for checking a variable having value in range -10.0 to +10.0?
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
Differentiate Source Codes from Object Codes
what is diffrence between string and character array?
Is sizeof a keyword in c?
What are c identifiers?
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)