What is the difference between far and near ?
No Answer is Posted For this Question
Be the First to Post Answer
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
WHAT IS PRE POSSESSORS?
What is the main differences between C and Embedded C?
What is build process in c?
Hi Every one......... Please Any body give me the answer for my question. Is it possible to print the word "PRINT F", without using printf() statement in C-Language.
how to find the largest element of array without using relational operater?
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
how to add numbers without using arithmetic operators.
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
What is the diffences between Windows XP and Windows Visa
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question