How do you declare a variable that will hold string values?
No Answer is Posted For this Question
Be the First to Post Answer
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Write a c program to demonstrate character and string constants?
what is the difference between 123 and 0123 in c?
What are identifiers and keywords in c?
What is a string?
What is zero based addressing?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
Write code for finding depth of tree
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Write a routine that prints out a 2-D array in spiral order!