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
Explain what is a program flowchart and explain how does it help in writing a program?
what is the hexidecimal number of 4100?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
What is the right way to use errno?
please send me the code for multiplying sparse matrix using c
Can an array be an Ivalue?
#define f(x) main() { printf("\n%d",f(2+2)); }
What is Heap?