which operator is known as dummy operator in c?
Answers were Sorted based on User's Feedback
How can I manipulate individual bits?
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 arrays and pointers?
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
how to create c progarm without void main()?
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
what is volatile in c language?
9 Answers Cap Gemini, HCL, Honeywell, TCS, Tech Mahindra,
what are the general concepts of c and c++
what is the diffrenet bettwen HTTP and internet protocol
Is c an object oriented programming language?
how the size of an integer is decided? - is it based on processor or compiler or OS?
19 Answers HCL, JPR, Microsoft, nvidia,
How was c created?