Why clrscr is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
What is c language and why we use it?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
What is wrong in this statement?
how to find the largest element of array without using relational operater?
what is the diference between pointer to the function and function to the pointer?
How to write a C program to determine the smallest among three nos using conditional operator?
Define VARIABLE?
How to establish connection with oracle database software from c language?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What is the difference between a structure and a union?