A character flag or control mechanism that delineates one data item from another
a) variable
b) constant
c) delimiter
d) call by reference
No Answer is Posted For this Question
Be the First to Post Answer
Tell me when is a void pointer used?
Explain how do you print only part of a string?
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
Is there a way to jump out of a function or functions?
How can I avoid the abort, retry, fail messages?
What is function pointer and where we will use it
Do you know the use of 'auto' keyword?
what is c language?
main() { float a=3.2e40; printf("%d",a); }
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
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.