What is the use of structure padding in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
what is available in C language but not in C++?
10 Answers CTS, TCS,
what are you see during placement time in the student.
0 Answers Goldman Sachs, TCS, Tech Solutions,
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
Explain the use of function toupper() with and example code?
Can I pass constant values to functions which accept structure arguments?
State the difference between realloc and free.
How can my program discover the complete pathname to the executable from which it was invoked?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised