Explain what is the general form of a c program?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
How can I handle floating-point exceptions gracefully?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
What is the symbol indicated the c-preprocessor?
Do you know what are the properties of union in c?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
Explain what are multidimensional arrays?
can we define a function in structure?
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
write a program to remove duplicate from an ordered char array? in c
Where in memory are my variables stored?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.