Write a program that can show the multiplication table.
No Answer is Posted For this Question
Be the First to Post Answer
How to reverse a linked list
1 Answers Aricent, Fidelity, IBM, TCS,
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
What does the format %10.2 mean when included in a printf statement?
Tell me can the size of an array be declared at runtime?
Are there any problems with performing mathematical operations on different variable types?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
What is the use of pointers in C?
0 Answers Impetus, Motorola, Tavant Technologies, Virtusa,
what is the difference between structural,object based,object orientd programming languages?
how to print a statement in c without use of console statement ,with the help of if statement it should print
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
writw a program to insert an element in the begning of a doubly linked list
Why can't we initialise member variable of a strucutre