Can we declare variable anywhere in c?
No Answer is Posted For this Question
Be the First to Post Answer
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What is the correct code to have following output in c using nested for loop?
What is an identifier?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is difference between array and structure in c?
Explain how do you generate random numbers in c?
Write a program to print factorial of given number without using recursion?
Does c have function or method?
What is 'bus error'?
Explain the process of converting a Tree into a Binary Tree.
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.