What is substring in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are high level languages like C and FORTRAN also known as?
List the difference between a While & Do While loops?
define function
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
why arithmetic operation can’t be performed on a void pointer?
How do you initialize function pointers? Give an example?
Why isnt any of this standardized in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
what is the difference between #include<stdio.h> and #include "stdio.h" ?
What is the difference between the = symbol and == symbol?
What is volatile variable how do you declare it?
Can a binary search tree be used as an index? If yes, how? Explain