what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / a.dinesh kumar
error will be occur because a is not in use in output
statement
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
What is the purpose of sprintf?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Which are low level languages?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is ## preprocessor operator in c?
What does do in c?
What is oops c?
What is stack in c?
Explain the priority queues?
Is c object oriented?
What are the 5 data types?
What is getch c?
Can you add pointers together? Why would you?