Explain what is the difference between functions getch() and getche()?
No Answer is Posted For this Question
Be the First to Post Answer
Is there any possibility to create customized header file with c programming language?
What is type qualifiers?
What are types of preprocessor in c?
writ a program to compare using strcmp VIVA and viva with its output.
Why should I prototype a function?
#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?
Write a program for Overriding.
What are local variables c?
Can we change the value of static variable in c?
What is the maximum length of an identifier?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)