What is the newline escape sequence?
No Answer is Posted For this Question
Be the First to Post Answer
declare afunction pointer to int printf(char *)?
main() { int a; a=++100; printf("%d",a); getch(); }
who did come first hen or agg
What is a #include preprocessor?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What is the difference between %d and %i?
When do we get logical errors?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20