Why do we need a structure?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
What are the types of arrays in c?
WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
write a program which counts a product of array elements lower than 10.
why integer range between -327680to+32767
The file stdio.h, what does it contain?
In header files whether functions are declared or defined?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()