what is the difference between 123 and 0123 in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is a program flowchart and explain how does it help in writing a program?
what is an inline function?
Sir i need notes for structure,functions,pointers in c language can you help me please
Differentiate fundamental data types and derived data types in C.
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is null in c?
why array index always starts from zero??
write a program in c language for the multiplication of two matrices using pointers?
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
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
Explain the Difference between the New and Malloc keyword.