How can I trap or ignore keyboard interrupts like control-c?
No Answer is Posted For this Question
Be the First to Post Answer
How do you use a pointer to a function?
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
1 232 34543 4567654 can anyone tell me how to slove this c question
Is c is a procedural language?
How can I get back to the interactive keyboard if stdin is redirected?
What are structural members?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
HOW TO HANDLE EXCEPTIONS IN C
Where are the auto variables stored?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
main() { int a; a=++100; printf("%d",a); getch(); }