How many loops are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is multidimensional arrays
What are the 3 types of structures?
What is an array in c?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
When is an interface "good"?
What is the difference between i++ and i+1 ?(in terms of memory)
What is null character in c?
What are the advantages of using linked list for tree construction?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
Should I learn data structures in c or python?
What is data types?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?