How do we declare variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is pointer ?
10 Answers Kernex Micro Systems,
Differentiate b/w Modify and Update commands giving example.
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What are type modifiers in c?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
How many header files are in c?
Why is #define used?
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
what is an array
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none