What is the use of #define preprocessor in c?
No Answer is Posted For this Question
Be the First to Post Answer
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
i want to job in your company, so how it will be possible.
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
What are the difference between a free-standing and a hosted environment?
What is the c value paradox and how is it explained?
Why is this loop always executing once?
What is the difference between constant pointer and pointer to a constant. Give examples.
What is a keyword?
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
How do I send escape sequences to control a terminal or other device?
State the difference between x3 and x[3].
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.