What are logical errors and how does it differ from syntax errors?
How would you print out the data in a binary tree, level by level, starting at the top?
how can we Declare a variable in c without defining it.
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
What is the difference between abs() and fabs() functions?
Which is better oop or procedural?
C program to find frequency of each character in a text file?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What are the advantages of using new operator as compared to the function malloc ()?
What is call by value in c?
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
What does the characters “r” and “w” mean when writing programs that will make use of files?
code for reverse alternate words from astring