Are c and c++ the same?
No Answer is Posted For this Question
Be the First to Post Answer
What is New modifiers?
Concat two string with most overlapped substring has to removeĀ "abcd"+ "cdef" = "abcdef
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
What are the features of c languages?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
Explain how do I determine whether a character is numeric, alphabetic, and so on?
When is a null pointer used?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
What are enums in c?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
What is a program flowchart and how does it help in writing a program?