what is the format specifier for printing a pointer value?
No Answer is Posted For this Question
Be the First to Post Answer
Are bit fields portable?
Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!
What are the types of data structures in c?
question-how to run a c programme.
WAP – represent a char in binary format
Difference between macros and inline functions? Can a function be forced as inline?
0 Answers HAL, Honeywell, Zomato,
What does c in a circle mean?
What are static functions?
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
What are the features of c language?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program