Explain logical errors? Compare with syntax errors.
No Answer is Posted For this Question
Be the First to Post Answer
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
What is getch?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
Find if a number is power of two or not?
whats the use of header file in c?
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
Determine if a number is a power of 2 at O(1).
what is the difference b/w NULL and null?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.