The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
No Answer is Posted For this Question
Be the First to Post Answer
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
int x=sizeof(!5.856); What will value of variable x?
Magic square
Explain 'far' and 'near' pointers in c.
How can I do peek and poke in c?
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
how to display 2-D array elements in spiral
IS Doon college of Engn.. has good faculty
Can two or more operators such as and be combined in a single line of program code?
Which is more efficient, a switch statement or an if else chain?
write function to reverse char array ... without using second array