How many types of errors are there in c language? Explain
No Answer is Posted For this Question
Be the First to Post Answer
Mention four important string handling functions in c languages .
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What is a const pointer?
Explain what are linked list?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Can we include one C program into another C program if yes how?
swap 2 numbers without using third variable?
What are runtime error?
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
How do you use a pointer to a function?