How are portions of a program disabled in demo versions?
No Answer is Posted For this Question
Be the First to Post Answer
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
Can we access array using pointer in c language?
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Explain the bubble sort algorithm.
Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0
What is return in c programming?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
though sbi was nationalized why its not comes under nationalized banks and its comes under publicsector banks
3 Answers State Bank Of India SBI,
WAP to convert text into its ASCII Code and also write a function to decode the text given?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
Can a program have multiple main() functions?