Answer Posted / prasanna kumar s
semicolon(;)
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Can true be a variable name in c?
What is variable in c example?
What are multidimensional arrays?
What is an lvalue in c?
How can you access memory located at a certain address?
If the size of int data type is two bytes, what is the range of signed int data type?
What are the differences between Structures and Arrays?
explain what is a newline escape sequence?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Tell me when is a void pointer used?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
Tell me when would you use a pointer to a function?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
How can I pad a string to a known length?