the maximum width of a c variable name can be
a) 6 characters
b) 8 characters
c) 10 characters
d) 20 characters
Answers were Sorted based on User's Feedback
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
How can I return multiple values from a function?
What is wrong in this statement? scanf(“%d”,whatnumber);
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
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.
Explain high-order and low-order bytes.
WHAT IS LOW LEVEL LANGUAGE?
Write a program to print factorial of given number using recursion?
What does stand for?
What are Macros? What are its advantages and disadvantages?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);