Explain spaghetti programming?
No Answer is Posted For this Question
Be the First to Post Answer
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).
Write a function in c to find the area of a triangle whose length of three sides is given.
What is use of null pointer in c?
What are the restrictions of a modulus operator?
what is unsigened char and what is the difference from char
write a program that will print %d in the output screen??
How would you print out the data in a binary tree, level by level, starting at the top?
Explain what happens if you free a pointer twice?
What is header file definition?
Explain the red-black trees?
#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?
Can i use Two or More Main Funtion in any C program.?