What is cohesion and coupling in c?
No Answer is Posted For this Question
Be the First to Post Answer
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
Are c and c++ the same?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
Write a code to generate a series where the next element is the sum of last k terms.
Can two or more operators such as and be combined in a single line of program code?
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }
write a function which accept two numbers from main() and interchange them using pointers?
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
Why doesn't C support function overloading?
What is the use of a conditional inclusion statement in C?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }