is it possible to change the default calling convention in c ?
Answer / prady
Yes,u can change it,because calling convention is not
language specific.it is compiler and platform dependent.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is dynamic dispatch in c++?
What is n in c?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
c pgm count no of lines , blanks, tabs in a para(File concept)
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
show how link list can be used to repersent the following polynomial i) 5x+2
What is the difference between int main and void main in c?
main() { printf(5+"Vidyarthi Computers"); }
Explain how can you restore a redirected standard stream?
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?