why should i select you?
Answers were Sorted based on User's Feedback
pierrot's divisor program using c or c++ code
What are actual arguments?
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
Explain about C function prototype?
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
what is the difference between postfix and prefix unary increment operators?
What library is sizeof in c?
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
Explain the difference between call by value and call by reference in c language?
Tell us something about keyword 'auto'.
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
how to count no of words,characters,lines in a paragraph.