while loop contains parts
a) initialisation, evalution of an expression,increment /decrement
b) initialisation, increment/decrement
c) condition evalution
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
Tell me when would you use a pointer to a function?
What are the modifiers available in c programming language?
Explain what is the difference between null and nul?
What is the role of && operator in a program code?
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
In which area global, external variables are stored?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
explain memory layout of a C program
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
Why void is used in c?