Can I initialize unions?
No Answer is Posted For this Question
Be the First to Post Answer
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
The difference between printf and fprintf is ?
Differentiate between static and dynamic modeling.
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
What are keywords in c with examples?
Whats s or c mean?
Distinguish between actual and formal arguments.
write a own function to compare two strings with out using stringcomparition function?
What is the difference between a structure and a union?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
How can I do peek and poke in c?