What is binary tree in c?
No Answer is Posted For this Question
Be the First to Post Answer
In c programming language, how many parameters can be passed to a function ?
How to add two numbers without using semicolon n c????
Write a C++ program without using any loop (if, for, while etc) to print numbers from 1 to 100 and 100 to 1;
18 Answers Accenture, Cisco, Egentec, HCL, Ideaz, Infosys, M-Systems, MYR, TCS,
write a program in c to print **** * * * * ****
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
Write a c program to build a heap method using Pointer to function and pointer to structure ?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
What does s c mean on snapchat?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
What are variables c?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers