Explain the array representation of a binary tree in C.
Code for calculating square root without using library function, of math.h
Why do we need a structure?
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
What are the different pointer models in c?
how to find the given number is prime or not?
how to generate the length of a string without using len funtion?
Which function in C can be used to append a string to another string?
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
Write a function that will take in a phone number and output all possible alphabetical combinations
Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What is a shell structure examples?