The variables are
int sum=10,SuM=20;
these are same or different?
Answer Posted / ckumar32
no.. these variable are not same
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What are the scope of static variables?
What does the function toupper() do?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Differentiate Source Codes from Object Codes
Explain c preprocessor?
When should structures be passed by values or by references?
When should a type cast not be used?
write a program to print data of 5 five students with structures?
#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 do we declare variables in c?
What's the difference between constant char *p and char * constant p?
What is the size of enum in c?
What is difference between structure and union in c programming?
What is the difference between formatted&unformatted i/o functions?