Is void a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is an operator?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What is far pointer in c?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
what is the difference between definition and declaration? give me some examples.
Program to find largest of three numbers without using comparsion operator?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
write a program to display numbers from 1 to 10 and 10 to 1?
what is pointer?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
Explain what is the use of a semicolon (;) at the end of every program statement?