How many types of operator or there in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is it possible to have a function as a parameter in another function?
1. Write a program to reverse every second word in a given sentence.
What is formal argument?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
What is a lvalue
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What are the rules for the identifier?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
1 1 12 21 123 321 12344231 how i creat it with for loop??
What is the mean of this statement:: if(int i=0 * i=9)
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's the difference between constant char *p and char * constant p?