What is meant by recursion?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
What is getch () for?
What are the different types of control structures in programming?
1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?
What is local and global variable in c?
What is pass by reference in c?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
which type of question asked from c / c++ in interview.
What is main void in c?
What are types of functions?
Explain how are 16- and 32-bit numbers stored?