What is boolean in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
Explain what is a static function?
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
What is sizeof in c?
what is pointer ? what is the use of pointer?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
what is linkage error when it occurs in c program
what is calloc and malloc?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Explain how can you tell whether a program was compiled using c versus c++?
Can true be a variable name in c?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }