can we have joblib in a proc ?
No Answer is Posted For this Question
Be the First to Post Answer
print out of string in this format; 1. "rajesh" 2. \n 3. %d
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
How can I read and write comma-delimited text?
What header files do I need in order to define the standard library functions I use?
inline function is there in c language?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
What is the use of static variable in c?
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
what is the difference between char * const and const char *?