identify the in correct expression
a.a=b=3=4;
b.a=b=c=d=0;
float a=int b=3.5;
d.int a;
float b;
a=b=3.5;
Answer Posted / mohmedali
b
| Is This Answer Correct ? | 9 Yes | 4 No |
Post New Answer View All Answers
#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); }
Write a program to print “hello world” without using semicolon?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Describe dynamic data structure in c programming language?
Ow can I insert or delete a line (or record) in the middle of a file?
What is the use of function in c?
How can I make sure that my program is the only one accessing a file?
Do array subscripts always start with zero?
Can you tell me how to check whether a linked list is circular?
What is anagram in c?
What is c language in simple words?
What is 1d array in c?
Explain how can I prevent another program from modifying part of a file that I am modifying?
What does int main () mean?