What is the difference between the local variable and global variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are linked lists in c?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
where does it flourished?
int x=sizeof(!5.856); What will value of variable x?
How to write c functions that modify head pointer of a linked list?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
how we can make 3d venturing graphics on outer interface
Where we use clrscr in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?