What is a floating point in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What is the 'named constructor idiom'?
What is int main () in c?
Explain what is the purpose of "extern" keyword in a function declaration?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).
5 Answers Microsoft, Motorola,
IS Doon college of Engn.. has good faculty
How do I determine whether a character is numeric, alphabetic, and so on?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
How to write c functions that modify head pointer of a linked list?